Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 716 Bytes

helm.md

File metadata and controls

37 lines (31 loc) · 716 Bytes

Helm

Helm

helm list -A
helm install
helm uninstall
helm status
helm get -h
helm -h
helm version
helm env  # see environment variables
helm -debug  # for verbose output

helm search hub [chart-name]
helm repo add [chart-name] [chart-url]
helm search repo [chart-name]
helm repo list

helm install [release-name] [chart name]

helm list
helm uninstall [release-name]
helm pull --untar [chart-name]
ls [chart-name]

# Examples
helm search repo bitnami --output json | jq '.[] | select(.name | contains("joomla"))'
helm repo list
helm install bravo bitnami/drupal
helm uninstall bravo
helm pull --untar  bitnami/apache
vim apache/values.yaml 
helm install mywebapp ./apache
helm list