feat(argo-cd): Add support for controller.sync.timeout.seconds (#3176)
Signed-off-by: Filipe Costa <fjg.costa@gmail.com>
This commit is contained in:
parent
52870ab907
commit
7b9f7fbed9
3 changed files with 6 additions and 3 deletions
|
@ -3,7 +3,7 @@ appVersion: v2.14.2
|
||||||
kubeVersion: ">=1.25.0-0"
|
kubeVersion: ">=1.25.0-0"
|
||||||
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: 7.8.3
|
version: 7.8.4
|
||||||
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
|
||||||
sources:
|
sources:
|
||||||
|
@ -26,5 +26,5 @@ annotations:
|
||||||
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: changed
|
- kind: added
|
||||||
description: Bump dex version to v2.42.0
|
description: Support controller.sync.timeout.seconds
|
||||||
|
|
|
@ -750,6 +750,7 @@ NAME: my-release
|
||||||
| configs.params."controller.repo.server.timeout.seconds" | int | `60` | Repo server RPC call timeout seconds. |
|
| configs.params."controller.repo.server.timeout.seconds" | int | `60` | Repo server RPC call timeout seconds. |
|
||||||
| configs.params."controller.self.heal.timeout.seconds" | int | `5` | Specifies timeout between application self heal attempts |
|
| configs.params."controller.self.heal.timeout.seconds" | int | `5` | Specifies timeout between application self heal attempts |
|
||||||
| configs.params."controller.status.processors" | int | `20` | Number of application status processors |
|
| configs.params."controller.status.processors" | int | `20` | Number of application status processors |
|
||||||
|
| configs.params."controller.sync.timeout.seconds" | int | `0` | Specifies the timeout after which a sync would be terminated. 0 means no timeout |
|
||||||
| configs.params."otlp.address" | string | `""` | Open-Telemetry collector address: (e.g. "otel-collector:4317") |
|
| configs.params."otlp.address" | string | `""` | Open-Telemetry collector address: (e.g. "otel-collector:4317") |
|
||||||
| configs.params."reposerver.parallelism.limit" | int | `0` | Limit on number of concurrent manifests generate requests. Any value less the 1 means no limit. |
|
| configs.params."reposerver.parallelism.limit" | int | `0` | Limit on number of concurrent manifests generate requests. Any value less the 1 means no limit. |
|
||||||
| configs.params."server.basehref" | string | `"/"` | Value for base href in index.html. Used if Argo CD is running behind reverse proxy under subpath different from / |
|
| configs.params."server.basehref" | string | `"/"` | Value for base href in index.html. Used if Argo CD is running behind reverse proxy under subpath different from / |
|
||||||
|
|
|
@ -275,6 +275,8 @@ configs:
|
||||||
controller.self.heal.timeout.seconds: 5
|
controller.self.heal.timeout.seconds: 5
|
||||||
# -- Repo server RPC call timeout seconds.
|
# -- Repo server RPC call timeout seconds.
|
||||||
controller.repo.server.timeout.seconds: 60
|
controller.repo.server.timeout.seconds: 60
|
||||||
|
# -- Specifies the timeout after which a sync would be terminated. 0 means no timeout
|
||||||
|
controller.sync.timeout.seconds: 0
|
||||||
|
|
||||||
## Server properties
|
## Server properties
|
||||||
# -- Run server without TLS
|
# -- Run server without TLS
|
||||||
|
|
Loading…
Reference in a new issue