Like nginx chart, is there a way to quickly generate a list of all parameters?
2
helm show values nginx bitnami/nginx
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 >.
--dry-run
helm install
>
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
-o=props
YQ command
Click here to cancel reply.
2
Answers
helm show values nginx bitnami/nginx
It is possible to create a dry-run output with
--dry-run
flag inhelm install
command. This can be outputted to a file with>
.e.g.
These parameters can also be converted to a format that is easier to handle with
yq
command’s-o=props
.YQ command