Skip to content

Commit b19beee

Browse files
authored
fix(argo-cd): Change default value for global.tolerations, from object to array (argoproj#1947)
Signed-off-by: yu-croco <[email protected]>
1 parent c3759fe commit b19beee

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

charts/argo-cd/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ appVersion: v2.6.7
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.28.0
6+
version: 5.28.1
77
home: https://github.com/argoproj/argo-helm
88
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
99
sources:
@@ -23,5 +23,5 @@ dependencies:
2323
condition: redis-ha.enabled
2424
annotations:
2525
artifacthub.io/changes: |
26-
- kind: added
27-
description: Add support for custom Deployment strategy
26+
- kind: fixed
27+
description: Change default value for global.tolerations, from object to array.

charts/argo-cd/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ NAME: my-release
413413
| global.revisionHistoryLimit | int | `3` | Number of old deployment ReplicaSets to retain. The rest will be garbage collected. |
414414
| global.securityContext | object | `{}` (See [values.yaml]) | Toggle and define pod-level security context. |
415415
| global.statefulsetAnnotations | object | `{}` | Annotations for the all deployed Statefulsets |
416-
| global.tolerations | object | `{}` | Default tolerations for all components |
416+
| global.tolerations | list | `[]` | Default tolerations for all components |
417417
| global.topologySpreadConstraints | list | `[]` | Default [TopologySpreadConstraints] rules for all components |
418418

419419
## Argo CD Configs

charts/argo-cd/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ global:
106106
nodeSelector: {}
107107

108108
# -- Default tolerations for all components
109-
tolerations: {}
109+
tolerations: []
110110

111111
# Default affinity preset for all components
112112
affinity:

0 commit comments

Comments
 (0)