Intermediate By Samson Tanimawo, PhD Published Sep 9, 2026 5 min read

Helm Cheat Sheet

Helm is fine until you're three values files deep and don't remember which one is winning. The commands that pull you out of that hole, plus the values-file pattern that prevents getting stuck.

install & upgrade

One verb you almost never want directly: install. upgrade --install covers both first-deploy and re-deploy, making your CI script idempotent.

list & rollback

Helm keeps revision history. The day you need it, you'll be glad it's there.

get values & manifest

"What values is this release actually using?" is the single most-asked Helm question. Three commands answer it.

template & diff

Render locally before you ever talk to the cluster. The two commands that turn Helm from "yolo" into "review-able".

Chart repos

Values-file patterns across envs

The pattern that prevents the 3-files-deep nightmare: one base, one per environment, one for secrets, in that load order.