Reputation: 41
Like nginx chart, is there a way to quickly generate a list of all parameters?
Upvotes: 1
Views: 848
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
.
Upvotes: 0