Joe Julian

Results 369 comments of Joe Julian

I may be wrong, but I think what you're asking for is the behavior you'd get from ``` --reset-values when upgrading, reset the values to the ones built into the...

I think you'd need to set `args: []` in your template to remove that.

> i still have my knative service on the same image tag... Do you mean that when you `kubectl get service.serving.knative.dev api -o yaml` you don't get the spec shown...

I'd look at `helm get manifest` for the release and see if it matches what's expected. If it does, then it's not helm. Perhaps there's a mutating webhook (just as...

Perhaps you could supply a minimum repro. If you need to upload charts, just tar them up and use the attach feature (keep it as small as possible). There are...

Didn't fail for me as I don't have whatever webhook would be validating the condition.

Install chart1 which has 1 ingress record attached to the root path, `/`. Install chart2 which has 3 ingress records, one of which also is attached to the root path....

Changed the milestone because this isn't a bug fix or security issue.

Your description sounds like that fits the [documentation](https://helm.sh/docs/chart_template_guide/subcharts_and_globals/). To override a child's value, you'd need to prefix it with `child` (in your example) in the parent values. Perhaps you're looking...

Ah, but it does. myoverride.yaml ``` global: foo: "fubar" child: bar: "baz" ``` ``` helm template parent/ -v myoverride.yaml ``` in both charts, .Values.global.foo will be "fubar" and in the...