Last active
December 20, 2022 10:30
-
-
Save antweiss/20b99c06e5a08301bbdf854f6479c7a0 to your computer and use it in GitHub Desktop.
Get all available eksctl addons for a cluster
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#the verbosity 0 prints out plain json and then we can parse out addon names | |
eksctl utils describe-addon-versions --cluster my-cluster --region=my-region --verbose 0 | jq -r '.Addons[] | .AddonName' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment