Helm delete all releases

To delete all Helm releases in Linux(in Helm v2.X) with a single command, you can use some good old bash. Just pipe the output of helm ls –short to xargs, and run helm delete for each release returned. helm ls –all –short | xargs -L1 helm delete Adding –purge will delete the charts as well, … Read more