Skip to content

Instantly share code, notes, and snippets.

@bil0u
Last active June 27, 2019 00:32
Show Gist options
  • Save bil0u/c0d728567bce382cad66bfefaf7b592f to your computer and use it in GitHub Desktop.
Save bil0u/c0d728567bce382cad66bfefaf7b592f to your computer and use it in GitHub Desktop.
[Helm commands] Some Helm useful commands #cheatsheet #helm #kubernetes
List Helm CLI commands

helm
helm <subcommand> --help

Add, update and list a repo

helm repo add <repo_name> <repo_url>
helm repo update
helm search -l <repo_name>

Install/update pod on a cluster

helm upgrade --install <pod_name> <repo_name> -f <path/to_config_file.yml>

Get pod install/update status

helm status <pod_name>

Get pod values

helm get values <pod_name> > values.yml

Cleanup releases

helm delete <release_name> --purge
helm ls --all --short | xargs -L1 helm delete --purge

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment