how to get value from online helm repo

1/23/2020

I want to know some default value of helm chart.

For example, I want to know .Values.master.tag of stable/jenkins. Is there a way to get this?

For now, I think that I do helm pull stable/jenkins and then unzip tar and find out from values.yaml file.

Thanks,

-- hokwang
kubernetes-helm

1 Answer

1/27/2020

I can only think of a workaround by doing a dry-run install and then greping for the value.

E.g.

helm install --dry-run jenkins_temp stable/jenkins | grep value_name

From the docs

When you want to test the template rendering, but not actually install anything, you can use helm install --debug --dry-run ./mychart. This will render the templates. But instead of installing the chart, it will return the rendered template to you so you can see the output

or you could fetch the Chart as a tar file.

helm fetch stable/jenkins --untar

less ./jenkins values.yaml
-- LazerBass
Source: StackOverflow