Helm 2 Cheatsheet
Legacy Helm v2 Cheatsheet
A quick reference for common Helm v2 commands.
List Releases
List all Helm releases in a specific namespace.
helm2 --tiller-namespace kube-system list
View History
View the revision history of a specific Helm release.
helm2 --tiller-namespace kube-system history my-app
Get Values
Retrieve the values used for a specific Helm release.
helm2 --tiller-namespace kube-system get values my-app --output yaml
Get Manifest
Retrieve the manifest for a specific revision of a Helm release.
helm2 --tiller-namespace kube-system get manifest my-app --revision 188
Rollback Release
Rollback a Helm release to a specific revision.
helm2 --tiller-namespace kube-system rollback my-app 5