0PricingLogin
Helm Academy · Lesson

Override on the CLI with --set

Quick single-value tweaks at install time.

Tweak Without a File

Sometimes you just want to change one knob. The --set flag overrides a single value right on the command line. ⚡

helm install web bitnami/nginx --set replicaCount=3

Key Equals Value

The syntax is simple: a key path, an equals sign, then the value. Helm slots replicaCount straight into the chart's values.

--set replicaCount=3

All lessons in this course

  1. Inspecting Defaults with helm show values
  2. Override on the CLI with --set
  3. Supplying a Custom values File with -f
  4. How --set and -f Are Merged
← Back to Helm Academy