Chart
Chart Install
helm install <name> <chart> --wait
helm install <name> <chart> --namespace <namespace> --create-namespace
Install from remote repository
helm install <name> <repo>/<chart>
helm install <name> --repo <repository> <chart>
Install from local files
helm install <name> ./chart
Install with custom values
helm install <name> --set <variable>=<value>
helm install <name> --values <values.yaml>
helm test <name>
Upgrade
helm upgrade --install <name> <chart>
Rollback deployment if failed upgrade
helm upgrade --install --atomic <name> <chart>
Rollback
helm rollback <name> <revision>
Uninstall Chart
helm uninstall <name>