It might be a very simple question, though somewhy I can't google the answer.
Let's assume we have a Helm chart with some default values such as the following:
parameters:
- parameterName: parameter1
value: value1
- parameterName: parameter2
value: value2
I need to add an element to this list in my extra values file. Of course, I can just duplicate the default values to my extra values file and add my extra parameters to them:
parameters:
- parameterName: parameter1
value: value1
- parameterName: parameter2
value: value2
- parameterName: parameterN
value: valueN
I don't like this idea, because when the maintainers of this Helm chart change their defaults, my defaults will override instead of following them.
What is the proper way to add my parameterN
to the default values?
Thanks in advance?