Skip to content

Commit 21f4ac8

Browse files
fix(argo-cd): Use nodeSelector global property as default on ApplicationSet (argoproj#1907)
fix(argo-cd): Use nodeSelector global property as default value on ApplicationSet Deployment according to the documentation. Signed-off-by: Julien Aubert <[email protected]> Co-authored-by: Aikawa <[email protected]>
1 parent fca26f9 commit 21f4ac8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

charts/argo-cd/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ appVersion: v2.6.5
33
kubeVersion: ">=1.22.0-0"
44
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
55
name: argo-cd
6-
version: 5.26.1
6+
version: 5.26.2
77
home: https://github.com/argoproj/argo-helm
88
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
99
sources:
@@ -24,4 +24,4 @@ dependencies:
2424
annotations:
2525
artifacthub.io/changes: |
2626
- kind: changed
27-
description: Upgrade Argo CD v2.6.5
27+
description: Use global.nodeSelector value as default value for nodeSelector on ApplicationSet

charts/argo-cd/templates/argocd-applicationset/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ spec:
205205
affinity:
206206
{{- trim . | nindent 8 }}
207207
{{- end }}
208-
{{- with .Values.applicationSet.nodeSelector }}
208+
{{- with .Values.applicationSet.nodeSelector | default .Values.global.nodeSelector }}
209209
nodeSelector:
210210
{{- toYaml . | nindent 8 }}
211211
{{- end }}

0 commit comments

Comments
 (0)