helm

CLI

The package manager for Kubernetes.

0 views

Installation

Homebrewbrew install helm

Links

License

Apache-2.0

AI Agent Notes

Install and manage Kubernetes applications via Helm charts

When to use

Deploying packaged apps to Kubernetes

Examples
  • helm install myapp ./chart
  • helm upgrade myapp ./chart

Proven Recipes

Install a chart🟢 95% success
helm install myapp ./chart -n namespace
Upgrade a release🟢 95% success
helm upgrade myapp ./chart -n namespace
List all releases🟢 99% success
helm list -A
Rollback a release🟢 93% success
helm rollback myapp 1