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