You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't see this as an error. The first example there installs in the default namespace and the first (and only) uninstall example uninstalls from the default namespaces.
Perhaps it could also have an uninstall command
helm uninstall # Uninstall a release
helm uninstall --namespace # Uninstall a release in a specific namespace
https://helm.sh/docs/intro/cheatsheet/#install-and-uninstall-apps
helm uninstall {name} # Uninstall a release
will yield error:
helm uninstall {name}
Error: uninstall: Release not loaded: {name}: release: not found
correct command should be
helm uninstall {name} -n {namespace} # Uninstall a release, provide namespace if release is under namespace
The text was updated successfully, but these errors were encountered: