Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/chart_template_guide/values_files.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Notice on the last line we access `favoriteDrink` as an attribute of `Values`:
Let's see how this renders.

```console
$ helm install geared-marsupi ./mychart --dry-run --debug
$ helm install geared-marsupi ./mychart --dry-run=client --debug
install.go:158: [debug] Original chart version: ""
install.go:175: [debug] CHART PATH: /home/bagratte/src/playground/mychart

Expand Down Expand Up @@ -85,7 +85,7 @@ that's the value displayed in the template. We can easily override that by
adding a `--set` flag in our call to `helm install`:

```console
$ helm install solid-vulture ./mychart --dry-run --debug --set favoriteDrink=slurm
$ helm install solid-vulture ./mychart --dry-run=client --debug --set favoriteDrink=slurm
install.go:158: [debug] Original chart version: ""
install.go:175: [debug] CHART PATH: /home/bagratte/src/playground/mychart

Expand Down