parent
18dfcc1053
commit
bdd118caf8
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v2.4.14
|
appVersion: v2.4.14
|
||||||
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.5.13
|
version: 5.5.14
|
||||||
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:
|
||||||
|
@ -22,4 +22,4 @@ dependencies:
|
||||||
condition: redis-ha.enabled
|
condition: redis-ha.enabled
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Changed]: Updated Redis to 7.0.5 for fixing CVE-2022-35951."
|
- "[Fixed]: Incorrectly placed timeout.reconciliation and timeout.hard.reconciliation"
|
||||||
|
|
|
@ -377,8 +377,6 @@ NAME: my-release
|
||||||
| configs.params."server.rootpath" | string | `""` | Used if Argo CD is running behind reverse proxy under subpath different from / |
|
| configs.params."server.rootpath" | string | `""` | Used if Argo CD is running behind reverse proxy under subpath different from / |
|
||||||
| configs.params."server.staticassets" | string | `"/shared/app"` | Directory path that contains additional static assets |
|
| configs.params."server.staticassets" | string | `"/shared/app"` | Directory path that contains additional static assets |
|
||||||
| configs.params."server.x.frame.options" | string | `"sameorigin"` | Set X-Frame-Options header in HTTP responses to value. To disable, set to "". |
|
| configs.params."server.x.frame.options" | string | `"sameorigin"` | Set X-Frame-Options header in HTTP responses to value. To disable, set to "". |
|
||||||
| configs.params."timeout.hard.reconciliation" | int | `0` | Time period in seconds for application hard resync |
|
|
||||||
| configs.params."timeout.reconciliation" | int | `180` | Time period in seconds for application resync |
|
|
||||||
| configs.params.annotations | object | `{}` | Annotations to be added to the argocd-cmd-params-cm ConfigMap |
|
| configs.params.annotations | object | `{}` | Annotations to be added to the argocd-cmd-params-cm ConfigMap |
|
||||||
| configs.repositories | object | `{}` | Repositories list to be used by applications |
|
| configs.repositories | object | `{}` | Repositories list to be used by applications |
|
||||||
| configs.repositoriesAnnotations | object | `{}` | Annotations to be added to `configs.repositories` Secret |
|
| configs.repositoriesAnnotations | object | `{}` | Annotations to be added to `configs.repositories` Secret |
|
||||||
|
|
|
@ -5,10 +5,10 @@ DEPRECATED option controller.args.statusProcessors - Use configs.params.controll
|
||||||
DEPRECATED option controller.args.operationProcessors - Use configs.params.controller.operation.processors
|
DEPRECATED option controller.args.operationProcessors - Use configs.params.controller.operation.processors
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.controller.args.appResyncPeriod }}
|
{{- if .Values.controller.args.appResyncPeriod }}
|
||||||
DEPRECATED option controller.args.appResyncPeriod - Use configs.params.timeout.reconciliation
|
DEPRECATED option controller.args.appResyncPeriod - Use server.config.timeout.reconciliation
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.controller.args.appHardResyncPeriod }}
|
{{- if .Values.controller.args.appHardResyncPeriod }}
|
||||||
DEPRECATED option controller.args.appHardResyncPeriod - Use configs.params.timeout.hard.reconciliation
|
DEPRECATED option controller.args.appHardResyncPeriod - Use server.config.timeout.hard.reconciliation
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.controller.args.selfHealTimeout }}
|
{{- if .Values.controller.args.selfHealTimeout }}
|
||||||
DEPRECATED option controller.args.selfHealTimeout - Use configs.params.controller.self.heal.timeout.seconds
|
DEPRECATED option controller.args.selfHealTimeout - Use configs.params.controller.self.heal.timeout.seconds
|
||||||
|
|
|
@ -299,10 +299,6 @@ configs:
|
||||||
## Generic parameters
|
## Generic parameters
|
||||||
# -- Open-Telemetry collector address: (e.g. "otel-collector:4317")
|
# -- Open-Telemetry collector address: (e.g. "otel-collector:4317")
|
||||||
otlp.address: ''
|
otlp.address: ''
|
||||||
# -- Time period in seconds for application resync
|
|
||||||
timeout.reconciliation: 180
|
|
||||||
# -- Time period in seconds for application hard resync
|
|
||||||
timeout.hard.reconciliation: 0
|
|
||||||
|
|
||||||
## Controller Properties
|
## Controller Properties
|
||||||
# -- Number of application status processors
|
# -- Number of application status processors
|
||||||
|
@ -1502,6 +1498,7 @@ server:
|
||||||
config:
|
config:
|
||||||
# Argo CD's externally facing base URL (optional). Required when configuring SSO
|
# Argo CD's externally facing base URL (optional). Required when configuring SSO
|
||||||
url: ""
|
url: ""
|
||||||
|
|
||||||
# Argo CD instance label key
|
# Argo CD instance label key
|
||||||
application.instanceLabelKey: argocd.argoproj.io/instance
|
application.instanceLabelKey: argocd.argoproj.io/instance
|
||||||
|
|
||||||
|
@ -1517,6 +1514,14 @@ server:
|
||||||
# https://argo-cd.readthedocs.io/en/latest/faq/#how-to-disable-admin-user
|
# https://argo-cd.readthedocs.io/en/latest/faq/#how-to-disable-admin-user
|
||||||
admin.enabled: "true"
|
admin.enabled: "true"
|
||||||
|
|
||||||
|
# Application reconciliation timeout is the max amount of time required to discover if a new manifests version got
|
||||||
|
# published to the repository. Reconciliation by timeout is disabled if timeout is set to 0. Three minutes by default.
|
||||||
|
timeout.reconciliation: 180s
|
||||||
|
|
||||||
|
# Timeout to refresh application data as well as target manifests cache
|
||||||
|
timeout.hard.reconciliation: "0"
|
||||||
|
|
||||||
|
# Dex configuration
|
||||||
# dex.config: |
|
# dex.config: |
|
||||||
# connectors:
|
# connectors:
|
||||||
# # GitHub example
|
# # GitHub example
|
||||||
|
@ -1529,6 +1534,7 @@ server:
|
||||||
# orgs:
|
# orgs:
|
||||||
# - name: your-github-org
|
# - name: your-github-org
|
||||||
|
|
||||||
|
# OIDC configuration as an alternative to dex (optional).
|
||||||
# oidc.config: |
|
# oidc.config: |
|
||||||
# name: AzureAD
|
# name: AzureAD
|
||||||
# issuer: https://login.microsoftonline.com/TENANT_ID/v2.0
|
# issuer: https://login.microsoftonline.com/TENANT_ID/v2.0
|
||||||
|
|
Loading…
Reference in New Issue