I'm using Helm and for nginx-ingress I need to add some annotations.
Inside the chart's values.yaml file, the podAnnotations is empty ({}).
The question I have is: what is the right way to add these annotations?
The annotations are a child of controller which is the root element of the values.yaml
controller:
...
podAnnotations:
...
Now, I get the feeling that I have to copy the whole values.yaml file into my custom-values.yaml in which I added the annotations.
$> heml install -f ./custom-values.yaml stable/nginx-ingress
But if I copy the whole values file I get the feeling that I can run into trouble if stable/nginx-ingress changes values inside values.yaml over time