DevOpsil
Helm18 commands

Helm Cheat Sheet

Essential Helm commands for managing Kubernetes packages — install, upgrade, rollback, and chart management.

Repo Management

CommandDescription
helm repo add <name> <url>
Add chart repository
helm repo update
Update repo index
helm repo list
List added repos
helm search repo <keyword>
Search charts in repos
helm search hub <keyword>
Search Artifact Hub

Install & Manage

CommandDescription
helm install <name> <chart>
Install a chart
helm install <name> <chart> -f values.yaml
Install with custom values
helm upgrade <name> <chart>
Upgrade a release
helm rollback <name> <rev>
Rollback to revision
helm uninstall <name>
Uninstall a release
helm list
List releases
helm status <name>
Show release status
helm history <name>
Show release history

Chart Development

CommandDescription
helm create <name>
Create a new chart
helm template <name> <chart>
Render templates locally
helm lint <chart>
Lint a chart
helm package <chart>
Package chart into archive
helm show values <chart>
Show chart default values