configuration
This commit is contained in:
parent
c6f9897934
commit
26483c27b8
3 changed files with 12 additions and 10 deletions
|
@ -1,9 +1,9 @@
|
|||
apiVersion: v2
|
||||
appVersion: v2.9-2024.2.14-58059e8b0
|
||||
appVersion: v2.9-2024.2.15-d04e12c26
|
||||
kubeVersion: ">=1.23.0-0"
|
||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||
name: argo-cd
|
||||
version: 5.53.12-2-cap-2.9-2024.2.14-58059e8b0
|
||||
version: 5.53.12-3-cap-2.9-2024.2.15-d04e12c26
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||
sources:
|
||||
|
|
|
@ -89,6 +89,8 @@ spec:
|
|||
{{- with (concat .Values.global.env .Values.repoServer.env) }}
|
||||
{{- toYaml . | nindent 10 }}
|
||||
{{- end }}
|
||||
- name: CODEFRESH_IGNORE_VERSION_CONFIG
|
||||
value: {{ .Values.repoServer.versionConfiguration.disabled | quote }}
|
||||
{{- if .Values.openshift.enabled }}
|
||||
- name: USER_NAME
|
||||
value: argocd
|
||||
|
@ -249,23 +251,18 @@ spec:
|
|||
key: reposerver.enable.git.submodule
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_REPO_SERVER_CODEFRESH_IGNORE_VERSION_CONFIG
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: codefresh-cm
|
||||
key: ignore-version-config
|
||||
optional: true
|
||||
- name: ARGOCD_REPO_SERVER_CODEFRESH_URL
|
||||
- name: CODEFRESH_URL
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: codefresh-cm
|
||||
key: base-url
|
||||
optional: true
|
||||
- name: ARGOCD_REPO_SERVER_CODEFRESH_TOKEN
|
||||
- name: CODEFRESH_TOKEN
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
key: token
|
||||
name: codefresh-token
|
||||
optional: true
|
||||
{{- if .Values.repoServer.useEphemeralHelmWorkingDir }}
|
||||
- name: HELM_CACHE_HOME
|
||||
value: /helm-working-dir
|
||||
|
|
|
@ -2161,6 +2161,11 @@ repoServer:
|
|||
# -- Environment variables to pass to repo server
|
||||
env: []
|
||||
|
||||
# Applications versions configuration settings
|
||||
versionConfiguration:
|
||||
# Disable getting version configuration from the Codefresh API
|
||||
disabled: false
|
||||
|
||||
# -- envFrom to pass to repo server
|
||||
# @default -- `[]` (See [values.yaml])
|
||||
envFrom: []
|
||||
|
|
Loading…
Reference in a new issue