Skip to content

Helm

CommandDescription
helm repo listList Helm repositories
helm repo updateUpdate list of Helm charts from repositories
CommandDescription
helm searchList all installed charts
helm search <chart>Search for a chart
helm lsList all installed Helm charts
helm ls --deletedList all deleted Helm charts
helm ls --allList installed and deleted Helm charts
helm inspect values <repo>/<chart>Inspect the variables in a chart
CommandDescription
helm install --name <name> <repo>/<chart>Install a Helm chart
helm install --name <name> --values <VALUES.YML> <repo>/<chart>Install a Helm chart and override variables
helm status <name>Show status of Helm chart being installed
helm delete --purge <name>Delete a Helm chart
CommandDescription
helm get values <name>Return the variables for a release
helm upgrade --values <file> <name> <repo>/<chart>Upgrade the chart or variables in a release
helm history <name>List release numbers
helm rollback <name> 1Rollback to a previous release number
CommandDescription
helm create <name>Create a blank chart
helm lint <name>Lint the chart
helm package <name>Package the chart into foo.tgz
helm dependency updateInstall chart dependencies