Skip to content

Instantly share code, notes, and snippets.

@prashanth-sams
Last active January 26, 2020 22:17
Show Gist options
  • Save prashanth-sams/2bc3dd4c949414acd365a041cd8ac310 to your computer and use it in GitHub Desktop.
Save prashanth-sams/2bc3dd4c949414acd365a041cd8ac310 to your computer and use it in GitHub Desktop.
Helm3 Chart Cheatsheet

helm3 version

helm3 version

install helm chart

helm3 install <chart-name> <chart-location>
helm3 install grafana .
helm3 install grafana . --namespace <namespace>

helm3 install --generate-name .
[note: no need to mention --name in helm3]

delete a release

helm3 del <release-name>
helm3 del <release-name> --namespace <namespace>

[note: --purge is not required as it is handled by default]

add helm repo

helm3 repo add stable https://kubernetes-charts.storage.googleapis.com
helm3 repo ls
helm3 fetch stable/prometheus-operator
helm3 install <release-name> -n <namespace> stable/prometheus-operator
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment