Skip to content

Instantly share code, notes, and snippets.

@shcallaway
Created August 29, 2019 20:26
Show Gist options
  • Save shcallaway/ebcdc72d631d121659ad24f1aeb9cce5 to your computer and use it in GitHub Desktop.
Save shcallaway/ebcdc72d631d121659ad24f1aeb9cce5 to your computer and use it in GitHub Desktop.
Print a list of Helm releases w/ their statuses

Print a list of Helm releases w/ their statuses. This command references the ConfigMaps directly -- Helm's underlying storage mechanism -- which makes it good for debugging Helm state.

kubectl get cm -o json | jq '.items[] | select(.metadata.labels.OWNER=="TILLER") | .metadata.labels.NAME + " - " + .metadata.labels.STATUS'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment