See the general help for Helm
See help for a particular command
See the installed version of Helm
2. Repo Add, Remove, Update
Add a repository from the internet
helm repo add [name] [url]
Remove a repository from your system
Search charts for a keyword
Search repositories for a keyword
helm search repo [keyword]
helm search hub [keyword]
helm install [name] [chart]
Install an app in a specific namespace
helm install [name] [chart] --namespace [namespace]
Override the default values with those specified in a file of your choice
helm install [name] [chart] --values [yaml-file/url]
Run a test install to validate and verify the chart
helm install [name] --dry-run --debug
helm uninstall [release name]
Create a directory containing the common chart files and directories
Package a chart into a chart archive
helm package [chart-path]
Run tests to examine a chart and identify possible issues
Inspect a chart and list its contents
Display the chart’s definition
Download a chart and extract the archive’s contents into a directory
helm pull [chart] --untar --untardir [directory]
Display a list of a chart’s dependencies
helm dependency list [chart]
List all the available releases in the current namespace
List all the available releases across all namespaces
helm list --all-namespaces
List all the releases in a specific namespace
helm list --namespace [namespace]
List all the releases in a specific output format
helm list --output [format]
See the status of a release
See information about the Helm client environment
helm upgrade [release] [chart]
Tell Helm to roll back changes if the upgrade fails
helm upgrade [release] [chart] --atomic
Upgrade a release. If it does not exist on the system, install it
helm upgrade [release] [chart] --install
Upgrade to a version other than the latest one Upgrade an app
helm upgrade [release] [chart] --version [version-number]
helm rollback [release] [revision]
Download all the release information
helm get manifest [release]
helm plugin install [path/url1] [path/url2]
View a list of all the installed plugins
helm plugin update [plugin1] [plugin2]
helm plugin uninstall [plugin]