You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
name: {{ required "A valid .Values.configs.clusterCredentials.CLUSTERNAME.name entry is required!" $cluster_key }}
There is something wrong with the way the required function is used in that line. It looks like what the function means is to check CLUSTERNAME.name in clusterCredentials, but this value always contains $cluster_key, so it doesn't throw an error in required.
Related helm chart
argo-cd
Describe the solution you'd like
I would suggest using $cluster_key as the default value and writing $cluster_value.name without validation.
Is your feature request related to a problem?
argo-helm/charts/argo-cd/templates/argocd-configs/cluster-secrets.yaml
Line 25 in 9946d3d
There is something wrong with the way the
required
function is used in that line. It looks like what the function means is to checkCLUSTERNAME.name
inclusterCredentials
, but this value always contains$cluster_key
, so it doesn't throw an error in required.Related helm chart
argo-cd
Describe the solution you'd like
I would suggest using
$cluster_key
as the default value and writing$cluster_value.name
without validation.like this:
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: