ArgoCD Application silently ignores when duplicate helm values are used for the same helm chart in the same Argo App #19195
-
Easy to reproduce: Deploy any Argo App with duplicate helm values, however, it didn't report any Observation: Argo App was synced and healthy when having repetition or duplicate helm values with different valid configurations. Below is sample:
NOTE: Argo App was marked as synced and healthy even upon resyncing. I could see the latest commit it was pointing to, which was correct, but this error would have been reported on the ArgoCD UI or Version: ArgoCD v2.9.6 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
No, See |
Beta Was this translation helpful? Give feedback.
No,
helm lint
will never see the duplicated key. Any duplicated keys are lost after Argo-CD parses the string usingjson.Unmarshal
.See