Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 723 Bytes

helm-commands.md

File metadata and controls

47 lines (36 loc) · 723 Bytes

HELM commands

Namespaces are optional!

List all helm applications

helm list -a

Create a new sample "w application

helm create <name>

Install an application (in a given namespace)

helm install <release-name> <directory> -n<namespace>

Add --dry-run to only show the output without actually installing the application

Upgrade an application

helm upgrade <release-name> <directory> -n<namespace>

Rollback an application

helm rollback <release-name> <release-number> -n<namespace>

Debugging and inspecting

helm template <directory>

Linting

helm lint <directory>

Uninstall an application

helm uninstall <release-name>