Merge 06b6d264ea
into 191e7688ab
This commit is contained in:
commit
472bca326e
3 changed files with 17 additions and 2 deletions
|
@ -3,7 +3,7 @@ appVersion: v2.13.3
|
||||||
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.7.15
|
version: 7.8.15
|
||||||
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:
|
||||||
|
|
|
@ -211,6 +211,18 @@ spec:
|
||||||
name: argocd-cmd-params-cm
|
name: argocd-cmd-params-cm
|
||||||
key: applicationsetcontroller.webhook.parallelism.limit
|
key: applicationsetcontroller.webhook.parallelism.limit
|
||||||
optional: true
|
optional: true
|
||||||
|
- name: ARGOCD_APPLICATIONSET_CONTROLLER_ENABLE_GITHUB_CACHE
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: argocd-cmd-params-cm
|
||||||
|
key: applicationsetcontroller.enable.github.cache
|
||||||
|
optional: true
|
||||||
|
- name: ARGOCD_APPLICATIONSET_CONTROLLER_GITHUB_CACHE_SIZE
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: argocd-cmd-params-cm
|
||||||
|
key: applicationsetcontroller.github.cache.size
|
||||||
|
optional: true
|
||||||
{{- with .Values.applicationSet.extraEnvFrom }}
|
{{- with .Values.applicationSet.extraEnvFrom }}
|
||||||
envFrom:
|
envFrom:
|
||||||
{{- toYaml . | nindent 12 }}
|
{{- toYaml . | nindent 12 }}
|
||||||
|
|
|
@ -303,7 +303,10 @@ configs:
|
||||||
# @default -- `""` (default is only the ns where the controller is installed)
|
# @default -- `""` (default is only the ns where the controller is installed)
|
||||||
## For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/applicationset/Appset-Any-Namespace/
|
## For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/applicationset/Appset-Any-Namespace/
|
||||||
applicationsetcontroller.namespaces: ""
|
applicationsetcontroller.namespaces: ""
|
||||||
|
# -- Enables caching of github api requests
|
||||||
|
applicationsetcontroller.enable.github.caching: false
|
||||||
|
# -- Max items to store in the github lru cache
|
||||||
|
applicationsetcontroller.github.cache.size: 1000
|
||||||
# -- Enables [Applications in any namespace]
|
# -- Enables [Applications in any namespace]
|
||||||
## List of additional namespaces where applications may be created in and reconciled from.
|
## List of additional namespaces where applications may be created in and reconciled from.
|
||||||
## The namespace where Argo CD is installed to will always be allowed.
|
## The namespace where Argo CD is installed to will always be allowed.
|
||||||
|
|
Loading…
Reference in a new issue