Installation guide of service.
-
Add Helm Repository:
helm repo add <repository-name> <repository-url> # or private git repository # helm repo add tech-thinker https://tech-thinker.github.io/helm-charts helm repo update
-
Inspect the values of chart.
helm show values <chart-name> # If you want to save the values to yaml file, use: helm show values <chart-name> > values.yaml
-
App Installation:
helm install <release-name> <chart-name> -n <namespace> -f values.yaml
-
List of Installed App:
helm list -n <namespace>
-
Uninstall App:
helm uninstall <release-name> -n <namespace>
-
Upgrade App:
helm upgrade <release-name> <chart-name> -n <namespace> -f values.yaml
-
Rollback App:
helm rollback <release-name> <revision> -n <namespace>
-
Create Helm Chart:
helm create <chart-name>
-
Package Helm Chart:
helm package <chart-name>
-
Publish Helm Chart:
helm push <chart-name>-<version>.tgz <repository>