Helm Cheat Sheet for use with helm cli.
System
View charts in local Helm
helm search [KEYWORD]
Inspect chart in local Helm
helm inspect [REPO NAME]/[CHART NAME] --version [CHART VERSION]
Refresh charts from source
helm repo update
Release
Values in Yaml
helm install -f [VALUES FILE].yaml .
Upgrade or Install
helm upgrade --install --recreate-pods --reset-values --force --wait [RELEASE NAME] [REPO NAME]/[CHART NAME] --version [CHART VERSION]
Upgrade or Install with values in Yaml
helm upgrade --install --recreate-pods --reset-values --force --values [VALUES FILE].yaml --wait [RELEASE NAME] [REPO NAME]/[CHART NAME] --version [CHART VERSION]
Delete
helm delete --purge [RELEASE NAME]
Delete All
helm ls --all --short | xargs -L1 helm delete --purge
History
helm history [RELEASE NAME]
Stable Repositories
Add
helm repo add stable [REPO NAME]
Search
helm search stable