- 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 ./redis
show
helm list --pending -A
show
helm uninstall -n namespace release_name
show
helm upgrade -f myvalues.yaml -f override.yaml redis ./redis
show
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