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
There are five different ways you can express the chart you want to install
helm install myapp bitnami/nginx # By chart reference
helm install myapp ./nginx-1.2.3.tgz # By path to a packaged chart
helm install myapp ./nginx # By path to an unpacked chart directory
helm install myapp https://example.com/charts/nginx-1.2.3.tgz # By absolute URL
helm install --repo https://example.com/charts/ myapp nginx # By chart reference and repo url
Uninstalling a Release
helm uninstall myapp
Useful commands
helm template .# Verify to template
helm lint # tests to verify that the chart is well-formed
helm list # to list down the deployed or failed releases
helm list --all
helm status myapp # To keep track of a release's state
helm show values myapp # To see what options are configurable on a chart
helm rollback myapp 1 # roll back to a previous release