uninstall: Release not loaded: new: release: not found, chart deployed using helm 3

By default, helm3 only shows releases of default namespace.
Do the following to get your release and delete it.

# Get all releases
helm ls --all-namespaces
# OR
helm ls -A

# Delete release
helm uninstall release_name -n release_namespace

Leave a Comment