Skip to content

Commit 3644e71

Browse files
authored
fix(argo-cd): Prevent could not parse 0 warning (argoproj#1704)
Prevent could not parse 0 warning Signed-off-by: Viacheslav Vasilyev <[email protected]> Signed-off-by: Viacheslav Vasilyev <[email protected]>
1 parent bc70281 commit 3644e71

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

charts/argo-cd/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ appVersion: v2.5.4
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.16.3
6+
version: 5.16.4
77
home: https://github.com/argoproj/argo-helm
88
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
99
sources:
@@ -23,4 +23,4 @@ dependencies:
2323
condition: redis-ha.enabled
2424
annotations:
2525
artifacthub.io/changes: |
26-
- "[Added]: Add annotations to PrometheusRule"
26+
- "[Fixed]: Prevent could not parse 0 warning"

charts/argo-cd/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ NAME: my-release
401401
| configs.cm."application.instanceLabelKey" | string | Defaults to app.kubernetes.io/instance | The name of tracking label used by Argo CD for resource pruning |
402402
| configs.cm."exec.enabled" | bool | `false` | Enable exec feature in Argo UI |
403403
| configs.cm."server.rbac.log.enforce.enable" | bool | `false` | Enable logs RBAC enforcement |
404-
| configs.cm."timeout.hard.reconciliation" | int | `0` | Timeout to refresh application data as well as target manifests cache |
404+
| configs.cm."timeout.hard.reconciliation" | string | `"0s"` | Timeout to refresh application data as well as target manifests cache |
405405
| configs.cm."timeout.reconciliation" | string | `"180s"` | Timeout to discover if a new manifests version got published to the repository |
406406
| configs.cm.annotations | object | `{}` | Annotations to be added to argocd-cm configmap |
407407
| configs.cm.create | bool | `true` | Create the argocd-cm configmap for [declarative setup] |

charts/argo-cd/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ configs:
133133
timeout.reconciliation: 180s
134134

135135
# -- Timeout to refresh application data as well as target manifests cache
136-
timeout.hard.reconciliation: 0
136+
timeout.hard.reconciliation: 0s
137137

138138
# Dex configuration
139139
# dex.config: |

0 commit comments

Comments
 (0)