Helm Setup
Helm Installation
Step 1: Downloads and install help on your developer machine.
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3chmod 700 get_helm.sh./get_helm.shStep 2: Verify the HELM Installation
helm versionInitialize a Helm Chart Repository
helm repo add stable https://charts.helm.sh/stableOnce this is installed, you will be able to list the charts you can install:
helm search repo stableGet the latest list of charts
helm repo updateHelm Cheetsheet
helm search hub wordpress
helm search repo
helm repo add stable https://kubernetes-charts.storage.googleapis.com
helm search repo brigade
helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/
helm repo listInstall a Release
Upgrade a Release Revision
Rollback to a release version
Print Release History
Display Release Status
Show details of a release
Uninstall a Release
List Release
Last updated
Was this helpful?