Cheatsheet to help install/upgrade/rollback helm charts.
Repo Chart
Note chart release name can be different from chart name.
Add and sync helm repo:
1 | # add helm repo if needs |
View helm installed chart:
1 | # list installed charts |
Install or Upgrade chart:
1 | # get current chart values |
Rollback chart:
1 | # REVISION is from helm history, see above |
Uninstall and install chart:
1 | # --keep-history if necessary |
Download chart package to local:
1 | # helm-repo is repo name from "helm repo list" |
Local Chart
For developing purpose, we can install directly from local chart folder.
You need to create Chart.yaml which contains chart version, appVersion, etc.
1 | # without k8s cluster |