All-Things-Docker-and-Kubernetes

Helm Commands

Helm Chart Management

These commands can be used for basic Helm chart management.

helm search hub <keyword> 
helm search repo <keyword>
helm pull <chart> 
helm install <name> <chart> 
helm upgrade <release> <chart>
helm rollback <release> <chart>
helm uninstall <release> 

Repository Management

These commanDs are focused on managing the repositories.

helm repo add <name> <url>
helm repo list 
helm repo remove <name>
helm repo update 
helm repo indec <directory> 

Release Management

These commands are focused on maintaining Helm releases.

helm status <release>  
helm list 
helm history <release>
helm get manifest <release>

Build Management

These are the commands you can use to build and manage your own Helm charts.

helm create <name> 
helm template <name> <chart>
helm package <chart> 
helm lint <chart> 


Back to first page