How to delete(uninstall) helm chart on specific resource How to delete(uninstall) helm chart on specific resource kubernetes kubernetes

How to delete(uninstall) helm chart on specific resource


You probably need:

$ helm delete redis

or if you completely want to remove the release:

$ helm delete redis --purge

stable/redis is not allowed as an expression because of the slash(/)

If you'd like to see the name of the releases you can simply run:

$ helm list -aq


Helm delete command is renamed to helm uninstall. So you probably have to use:

helm uninstall redis

More info at - https://helm.sh/docs/helm/helm_uninstall/