0

When I see gitea/gitea in my helm list -A. I want to change some of those default, but I don't see them when I run helm get values

❯ helm get values gitea -n gitea USER-SUPPLIED VALUES: null 

It's like it only shows me the defaults I overrode not the ones I can change. How can I see all of them?

1 Answer 1

0

Your only method to see all of them is to retrieve them from the chart with show-values.

helm show values gitea-charts/gitea > values.yaml 

Note, you have to know that your chart was installed from the repo gitea-charts.

After this you can edit the values.yaml and apply it in an upgrade

helm upgrade .... -f values.yaml 

Note specifying the default explicitly means it's now forever a hard-set option. So only specify the values you want to change.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.