brokenjacobs commented on issue #37872:
URL: https://github.com/apache/airflow/issues/37872#issuecomment-1979698013
I think the issue here is that mergeOverwrite doesn't return a value, it
overwrites into .Values.airflowPodAnnotations.
```
Nested objects that are merged are the same instance on both dicts. If you
want a deep copy along with the merge than use the deepCopy function along with
merging.
```
So this should be:
```
{{- $podAnnotations := mergeOverwrite (deepCopy
.Values.airflowPodAnnotations) $safeToEvict .Values.workers.podAnnotations }}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]