Skip to content

Instantly share code, notes, and snippets.

@serafdev
Created November 21, 2020 01:38
Show Gist options
  • Save serafdev/57f13e3796ce51401bc6a96be91c67fe to your computer and use it in GitHub Desktop.
Save serafdev/57f13e3796ce51401bc6a96be91c67fe to your computer and use it in GitHub Desktop.
Delete all Helm Releases in the default namespace
#!/bin/sh
# Delete all Helm Releases in the default namespace
helm list | awk 'NR>1{print $1}'| xargs helm del
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment