Skip to content

Commit 21c7a8b

Browse files
feat: argo-cd v2.11.12 (#78)
Signed-off-by: Justin Marquis <[email protected]>
1 parent ff6c77e commit 21c7a8b

File tree

5 files changed

+49
-3
lines changed

5 files changed

+49
-3
lines changed

charts/argo-cd/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
2-
version: 2.11.9-ak.0.1
3-
appVersion: 2.11.9
2+
version: 2.11.12-ak.0.0
3+
appVersion: 2.11.12
44
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
55
name: argo-cd
66
home: https://charts.akuity.io

charts/argo-cd/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# argo-cd
22

3-
![Version: 2.11.9-ak.0.1](https://img.shields.io/badge/Version-2.11.9--ak.0.1-informational?style=flat-square) ![AppVersion: 2.11.9](https://img.shields.io/badge/AppVersion-2.11.9-informational?style=flat-square)
3+
![Version: 2.11.12-ak.0.0](https://img.shields.io/badge/Version-2.11.12--ak.0.0-informational?style=flat-square) ![AppVersion: 2.11.12](https://img.shields.io/badge/AppVersion-2.11.12-informational?style=flat-square)
44

55
A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
66

charts/argo-cd/crds/crd-application.yaml

+10
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,11 @@ spec:
105105
sync:
106106
description: Sync contains parameters for the operation
107107
properties:
108+
autoHealAttemptsCount:
109+
description: SelfHealAttemptsCount contains the number of auto-heal
110+
attempts
111+
format: int64
112+
type: integer
108113
dryRun:
109114
description: DryRun specifies to perform a `kubectl apply --dry-run`
110115
without actually performing the sync
@@ -2533,6 +2538,11 @@ spec:
25332538
sync:
25342539
description: Sync contains parameters for the operation
25352540
properties:
2541+
autoHealAttemptsCount:
2542+
description: SelfHealAttemptsCount contains the number
2543+
of auto-heal attempts
2544+
format: int64
2545+
type: integer
25362546
dryRun:
25372547
description: DryRun specifies to perform a `kubectl apply
25382548
--dry-run` without actually performing the sync

charts/argo-cd/templates/application-controller/deployment.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,24 @@ spec:
109109
name: argocd-cmd-params-cm
110110
key: controller.self.heal.timeout.seconds
111111
optional: true
112+
- name: ARGOCD_APPLICATION_CONTROLLER_SELF_HEAL_BACKOFF_TIMEOUT_SECONDS
113+
valueFrom:
114+
configMapKeyRef:
115+
name: argocd-cmd-params-cm
116+
key: controller.self.heal.backoff.timeout.seconds
117+
optional: true
118+
- name: ARGOCD_APPLICATION_CONTROLLER_SELF_HEAL_BACKOFF_FACTOR
119+
valueFrom:
120+
configMapKeyRef:
121+
name: argocd-cmd-params-cm
122+
key: controller.self.heal.backoff.factor
123+
optional: true
124+
- name: ARGOCD_APPLICATION_CONTROLLER_SELF_HEAL_BACKOFF_CAP_SECONDS
125+
valueFrom:
126+
configMapKeyRef:
127+
name: argocd-cmd-params-cm
128+
key: controller.self.heal.backoff.cap.seconds
129+
optional: true
112130
- name: ARGOCD_APPLICATION_CONTROLLER_REPO_SERVER_PLAINTEXT
113131
valueFrom:
114132
configMapKeyRef:

charts/argo-cd/templates/application-controller/statefulset.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,24 @@ spec:
127127
key: controller.self.heal.timeout.seconds
128128
name: argocd-cmd-params-cm
129129
optional: true
130+
- name: ARGOCD_APPLICATION_CONTROLLER_SELF_HEAL_BACKOFF_TIMEOUT_SECONDS
131+
valueFrom:
132+
configMapKeyRef:
133+
name: argocd-cmd-params-cm
134+
key: controller.self.heal.backoff.timeout.seconds
135+
optional: true
136+
- name: ARGOCD_APPLICATION_CONTROLLER_SELF_HEAL_BACKOFF_FACTOR
137+
valueFrom:
138+
configMapKeyRef:
139+
name: argocd-cmd-params-cm
140+
key: controller.self.heal.backoff.factor
141+
optional: true
142+
- name: ARGOCD_APPLICATION_CONTROLLER_SELF_HEAL_BACKOFF_CAP_SECONDS
143+
valueFrom:
144+
configMapKeyRef:
145+
name: argocd-cmd-params-cm
146+
key: controller.self.heal.backoff.cap.seconds
147+
optional: true
130148
- name: ARGOCD_APPLICATION_CONTROLLER_REPO_SERVER_PLAINTEXT
131149
valueFrom:
132150
configMapKeyRef:

0 commit comments

Comments
 (0)