Skip to content

Instantly share code, notes, and snippets.

@antweiss
Last active December 20, 2022 10:30
Show Gist options
  • Save antweiss/20b99c06e5a08301bbdf854f6479c7a0 to your computer and use it in GitHub Desktop.
Save antweiss/20b99c06e5a08301bbdf854f6479c7a0 to your computer and use it in GitHub Desktop.
Get all available eksctl addons for a cluster
#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