Created
November 21, 2020 01:38
-
-
Save serafdev/57f13e3796ce51401bc6a96be91c67fe to your computer and use it in GitHub Desktop.
Delete all Helm Releases in the default namespace
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
#!/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