BLOG14: Helm Chart Basics
BLOG 501: Helm & Kustomize Useful Commands
HELM — Frequently Used Troubleshooting Commands
1. List installed applications
helm list -Ahelm list -n <namespace>2. List added repositories
helm repo list3. List all versions of a chart
helm search repo <chart-name> --versions4. List installed versions of an app
5. Install an app
6. Upgrade an app
7. Rollback an app
8. Dry run (no apply)
Option A — full server-side dry run:
Option B — render templates only (no cluster needed):
9. Uninstall
10. Clean old chart repos
KUSTOMIZE — Frequently Used Troubleshooting Commands
1. Dry-run (client-side)
2. Dry-run apply
3. Build (same as dry-run)
4. View final resource names
5. Validate patches
6. Apply overlay
7. Delete overlay
8. Debug configmap replacement
9. Validate overlay structure
Top 20 Troubleshooting Commands (Quick Reference)
HELM
Task
Command
KUSTOMIZE
Task
Command
Helm Terminology Explained
1️⃣ Release Name
Why important?
2️⃣ Chart Name
Example from Helm Hub:
3️⃣ Chart Path
Local chart path:
Remote chart path (from a repo):
4️⃣ Registry URI
Example registry URIs:
Repo Name
Registry URI
OCI Registry URI (New Helm feature)
**Final Summary
Term
Meaning
Example
Last updated