- Note: Helm is part of the new CKAD syllabus. Here are a few examples of using Helm to manage Kubernetes.
show
helm create chart-test ## this would create a helm show
helm install -f myvalues.yaml my redis ./redisshow
helm list --pending -Ashow
helm uninstall -n namespace release_nameshow
helm upgrade -f myvalues.yaml -f override.yaml redis ./redisshow
Add, list, remove, update and index chart repos
helm repo add [NAME] [URL] [flags]
helm repo list / helm repo ls
helm repo remove [REPO1] [flags]
helm repo update / helm repo up
helm repo update [REPO1] [flags]
helm repo index [DIR] [flags]show
helm pull [chart URL | repo/chartname] [...] [flags] ## this would download a helm, not install
helm pull --untar [rep/chartname] # untar the chart after downloading it