feat(argo-cd) Add appHardResyncPeriod option for controller (#1320)
Base on this PR upstream https://github.com/argoproj/argo-cd/pull/8928 we can now provide a hard resync value to the ArgoCD Application Controller Signed-off-by: JM <jmeridth@gmail.com> Signed-off-by: JM <jmeridth@gmail.com>
This commit is contained in:
parent
eca9f91df4
commit
dd4fdef4ee
4 changed files with 7 additions and 2 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v2.4.11
|
appVersion: v2.4.11
|
||||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 5.3.5
|
version: 5.3.6
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -19,4 +19,4 @@ dependencies:
|
||||||
condition: redis-ha.enabled
|
condition: redis-ha.enabled
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Changed]: Upgrade Redis HA to 4.22.1
|
- "[Added]: Add appHardResyncPeriod option for application controller"
|
||||||
|
|
|
@ -380,6 +380,7 @@ NAME: my-release
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| controller.affinity | object | `{}` | Assign custom [affinity] rules to the deployment |
|
| controller.affinity | object | `{}` | Assign custom [affinity] rules to the deployment |
|
||||||
|
| controller.args.appHardResyncPeriod | string | `"0"` | define the application controller `--app-hard-resync` |
|
||||||
| controller.args.appResyncPeriod | string | `"180"` | define the application controller `--app-resync` |
|
| controller.args.appResyncPeriod | string | `"180"` | define the application controller `--app-resync` |
|
||||||
| controller.args.operationProcessors | string | `"10"` | define the application controller `--operation-processors` |
|
| controller.args.operationProcessors | string | `"10"` | define the application controller `--operation-processors` |
|
||||||
| controller.args.repoServerTimeoutSeconds | string | `"60"` | define the application controller `--repo-server-timeout-seconds` |
|
| controller.args.repoServerTimeoutSeconds | string | `"60"` | define the application controller `--repo-server-timeout-seconds` |
|
||||||
|
|
|
@ -44,6 +44,8 @@ spec:
|
||||||
- {{ .Values.controller.args.operationProcessors | quote }}
|
- {{ .Values.controller.args.operationProcessors | quote }}
|
||||||
- --app-resync
|
- --app-resync
|
||||||
- {{ .Values.controller.args.appResyncPeriod | quote }}
|
- {{ .Values.controller.args.appResyncPeriod | quote }}
|
||||||
|
- --app-hard-resync
|
||||||
|
- {{ .Values.controller.args.appHardResyncPeriod | quote }}
|
||||||
- --self-heal-timeout-seconds
|
- --self-heal-timeout-seconds
|
||||||
- {{ .Values.controller.args.selfHealTimeout | quote }}
|
- {{ .Values.controller.args.selfHealTimeout | quote }}
|
||||||
- --repo-server
|
- --repo-server
|
||||||
|
|
|
@ -128,6 +128,8 @@ controller:
|
||||||
statusProcessors: "20"
|
statusProcessors: "20"
|
||||||
# -- define the application controller `--operation-processors`
|
# -- define the application controller `--operation-processors`
|
||||||
operationProcessors: "10"
|
operationProcessors: "10"
|
||||||
|
# -- define the application controller `--app-hard-resync`
|
||||||
|
appHardResyncPeriod: "0"
|
||||||
# -- define the application controller `--app-resync`
|
# -- define the application controller `--app-resync`
|
||||||
appResyncPeriod: "180"
|
appResyncPeriod: "180"
|
||||||
# -- define the application controller `--self-heal-timeout-seconds`
|
# -- define the application controller `--self-heal-timeout-seconds`
|
||||||
|
|
Loading…
Reference in a new issue