Hi,
I'd like to get all the values ("COMPUTED VALUES") of a chart (and its dependencies) without deploying it:
- Like
helm template, but to get the values instead of the manifests.
- Like
helm get values --all, but as if I was using helm template, working on an undeployed chart with a list of passed --set, --values, instead of a deployed release.
eg helm <command> --namespace bar chartname ./path/to/chart --values baz.yaml that would return
COMPUTED VALUES:
global:
...
subchart1:
enabled: true
...
Is there a way to do this in Helm?
Hi,
I'd like to get all the values ("COMPUTED VALUES") of a chart (and its dependencies) without deploying it:
helm template, but to get the values instead of the manifests.helm get values --all, but as if I was usinghelm template, working on an undeployed chart with a list of passed--set,--values, instead of a deployed release.eg
helm <command> --namespace bar chartname ./path/to/chart --values baz.yamlthat would returnIs there a way to do this in Helm?