File tree Expand file tree Collapse file tree 5 files changed +16
-13
lines changed Expand file tree Collapse file tree 5 files changed +16
-13
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
appVersion : v1.7.2-cap-CR-28008
3
3
description : A Helm chart for Argo Rollouts
4
4
name : argo-rollouts
5
- version : 2.37.3-3 -v1.7.2-cap-CR-28008
5
+ version : 2.37.3-4 -v1.7.2-cap-CR-28008
6
6
home : https://github.com/argoproj/argo-helm
7
7
icon : https://argoproj.github.io/argo-rollouts/assets/logo.png
8
8
keywords :
@@ -19,7 +19,4 @@ annotations:
19
19
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
20
20
artifacthub.io/changes : |
21
21
- kind: changed
22
- description: Security fixes for Argo Rollouts v1.7.2
23
- links:
24
- - name: GitHub Release
25
- url: https://github.com/codefresh-io/argo-rollouts/releases/tag/v1.7.2-cap-CR-28008
22
+ description: Add default global tolerations and nodeSelector
Original file line number Diff line number Diff line change @@ -51,7 +51,9 @@ For full list of changes please check ArtifactHub [changelog].
51
51
| fullnameOverride | string | ` nil ` | String to fully override "argo-rollouts.fullname" template |
52
52
| global.deploymentAnnotations | object | ` {} ` | Annotations for all deployed Deployments |
53
53
| global.deploymentLabels | object | ` {} ` | Labels for all deployed Deployments |
54
+ | global.nodeSelector | object | ` {} ` | Default node selector for all components |
54
55
| global.revisionHistoryLimit | int | ` 10 ` | Number of old deployment ReplicaSets to retain. The rest will be garbage collected. |
56
+ | global.tolerations | list | ` [] ` | Default tolerations for all components |
55
57
| imagePullSecrets | list | ` [] ` | Secrets with credentials to pull images from a private registry. Registry secret names as an array. |
56
58
| installCRDs | bool | ` true ` | Install and upgrade CRDs |
57
59
| keepCRDs | bool | ` true ` | Keep CRD's on helm uninstall |
Original file line number Diff line number Diff line change @@ -95,15 +95,15 @@ spec:
95
95
initContainers :
96
96
{{- toYaml . | nindent 8 }}
97
97
{{- end }}
98
- {{- if .Values.controller.nodeSelector }}
98
+ {{- with .Values.controller.nodeSelector | default .Values.global .nodeSelector }}
99
99
nodeSelector :
100
- {{- toYaml .Values.controller.nodeSelector | nindent 8 }}
100
+ {{- toYaml . | nindent 8 }}
101
101
{{- end }}
102
102
securityContext :
103
103
{{- toYaml .Values.podSecurityContext | nindent 8 }}
104
- {{- if .Values.controller.tolerations }}
104
+ {{- with .Values.controller.tolerations | default .Values.global .tolerations }}
105
105
tolerations :
106
- {{- toYaml .Values.controller.tolerations | nindent 8 }}
106
+ {{- toYaml . | nindent 8 }}
107
107
{{- end }}
108
108
{{- if .Values.controller.affinity }}
109
109
affinity :
Original file line number Diff line number Diff line change @@ -71,15 +71,15 @@ spec:
71
71
volumeMounts :
72
72
{{- toYaml . | nindent 8 }}
73
73
{{- end }}
74
- {{- if .Values.dashboard.nodeSelector }}
74
+ {{- with .Values.dashboard.nodeSelector | default .Values.global .nodeSelector }}
75
75
nodeSelector :
76
- {{- toYaml .Values.dashboard.nodeSelector | nindent 8 }}
76
+ {{- toYaml . | nindent 8 }}
77
77
{{- end }}
78
78
securityContext :
79
79
{{- toYaml .Values.dashboard.podSecurityContext | nindent 8 }}
80
- {{- if .Values.dashboard.tolerations }}
80
+ {{- with .Values.dashboard.tolerations | default .Values.global .tolerations }}
81
81
tolerations :
82
- {{- toYaml .Values.dashboard.tolerations | nindent 8 }}
82
+ {{- toYaml . | nindent 8 }}
83
83
{{- end }}
84
84
{{- if .Values.dashboard.affinity }}
85
85
affinity :
Original file line number Diff line number Diff line change @@ -45,6 +45,10 @@ global:
45
45
deploymentLabels : {}
46
46
# -- Number of old deployment ReplicaSets to retain. The rest will be garbage collected.
47
47
revisionHistoryLimit : 10
48
+ # -- Default node selector for all components
49
+ nodeSelector : {}
50
+ # -- Default tolerations for all components
51
+ tolerations : []
48
52
49
53
controller :
50
54
# -- Value of label `app.kubernetes.io/component`
You can’t perform that action at this time.
0 commit comments