I have a deployment spec with a repeated env name, see below:
containers:
- name: c1
...
env:
- name: DUP1
value: hello1
- name: DUP1
value: hello2
Can I expect the second DUP1 key to always be the one set on the pod? e.g. echo $DUP1 == "hello2". It seems to be the case but I can't find validation about it