Skip to content

Instantly share code, notes, and snippets.

@zulhfreelancer
Created January 27, 2022 04:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zulhfreelancer/751d4f0b2fa47e2a3648ec171d3bd952 to your computer and use it in GitHub Desktop.
Save zulhfreelancer/751d4f0b2fa47e2a3648ec171d3bd952 to your computer and use it in GitHub Desktop.
[Helm v3] How to uninstall all releases from all namespaces?
# Require 'jq'
# https://stedolan.github.io/jq/
helm list -A -o json | jq -r '.[] | .name + " " + .namespace' | xargs -n2 sh -c 'helm uninstall $1 -n $2' sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment