xianzhe
xianzhe

Reputation: 41

How to genarate the list of all parameters in helm chart template?

Like nginx chart, is there a way to quickly generate a list of all parameters?

Upvotes: 1

Views: 848

Answers (2)

Cladnic
Cladnic

Reputation: 43

It is possible to create a dry-run output with --dry-run flag in helm install command. This can be outputted to a file with >.

e.g.

helm template <name> <chart> --dry-run -f <optionally-a-file> > parameter-list.yaml

These parameters can also be converted to a format that is easier to handle with yq command's -o=props.

YQ command

Upvotes: 0

gohm&#39;c
gohm&#39;c

Reputation: 15490

helm show values nginx bitnami/nginx

Upvotes: 1

Related Questions