helm
Installation
SKILL.md
Helm
Kubernetes package manager for deploying and managing applications via charts.
Quick Commands
# Install/Upgrade
helm install myapp ./mychart -f values.yaml
helm upgrade --install myapp ./mychart -f values.yaml
# Debug templates
helm template myapp ./mychart --debug
helm install myapp ./mychart --dry-run --debug