Added env variables to handle the non-standard names generated by the helm chart.
https://argo-cd.readthedocs.io/en/release-2.9/user-guide/environment-variables/
99723143b9/common/common.go (L252)
Signed-off-by: Oscar Wieman <oscar@oscarr.nl>
This commit is contained in:
parent
c3e1df9ea2
commit
4377306f2c
6 changed files with 17 additions and 1 deletions
|
@ -27,4 +27,6 @@ annotations:
|
||||||
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: changed
|
||||||
description: Added support for application controller dynamic cluster distribution
|
description: Added support for application controller dynamic cluster distribution.
|
||||||
|
- kind: fixed
|
||||||
|
description: Added env variables to handle the non-standard names generated by the helm chart.
|
||||||
|
|
|
@ -283,6 +283,10 @@ Highlighted versions provide information about additional steps that should be p
|
||||||
Added support for application controller dynamic cluster distribution.
|
Added support for application controller dynamic cluster distribution.
|
||||||
Please refer to [the docs](https://argo-cd.readthedocs.io/en/stable/operator-manual/dynamic-cluster-distribution) for more information.
|
Please refer to [the docs](https://argo-cd.readthedocs.io/en/stable/operator-manual/dynamic-cluster-distribution) for more information.
|
||||||
|
|
||||||
|
Added env variables to handle the non-standard names generated by the helm chart.
|
||||||
|
Here are the [docs](https://argo-cd.readthedocs.io/en/release-2.9/user-guide/environment-variables/)
|
||||||
|
and [code](https://github.com/argoproj/argo-cd/blob/99723143b96ceec9ef5b0a7feb7b4f4b0dce3497/common/common.go#L252)
|
||||||
|
|
||||||
### 6.1.0
|
### 6.1.0
|
||||||
|
|
||||||
Added support for global domain used by all components.
|
Added support for global domain used by all components.
|
||||||
|
|
|
@ -283,6 +283,10 @@ Highlighted versions provide information about additional steps that should be p
|
||||||
Added support for application controller dynamic cluster distribution.
|
Added support for application controller dynamic cluster distribution.
|
||||||
Please refer to [the docs](https://argo-cd.readthedocs.io/en/stable/operator-manual/dynamic-cluster-distribution) for more information.
|
Please refer to [the docs](https://argo-cd.readthedocs.io/en/stable/operator-manual/dynamic-cluster-distribution) for more information.
|
||||||
|
|
||||||
|
Added env variables to handle the non-standard names generated by the helm chart.
|
||||||
|
Here are the [docs](https://argo-cd.readthedocs.io/en/release-2.9/user-guide/environment-variables/)
|
||||||
|
and [code](https://github.com/argoproj/argo-cd/blob/99723143b96ceec9ef5b0a7feb7b4f4b0dce3497/common/common.go#L252)
|
||||||
|
|
||||||
### 6.1.0
|
### 6.1.0
|
||||||
|
|
||||||
Added support for global domain used by all components.
|
Added support for global domain used by all components.
|
||||||
|
|
|
@ -78,6 +78,8 @@ spec:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
- name: ARGOCD_CONTROLLER_REPLICAS
|
- name: ARGOCD_CONTROLLER_REPLICAS
|
||||||
value: {{ .Values.controller.replicas | quote }}
|
value: {{ .Values.controller.replicas | quote }}
|
||||||
|
- name: ARGOCD_APPLICATION_CONTROLLER_NAME
|
||||||
|
value: {{ template "argo-cd.controller.fullname" . }}
|
||||||
- name: ARGOCD_RECONCILIATION_TIMEOUT
|
- name: ARGOCD_RECONCILIATION_TIMEOUT
|
||||||
valueFrom:
|
valueFrom:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
|
|
|
@ -85,6 +85,8 @@ spec:
|
||||||
- name: USER_NAME
|
- name: USER_NAME
|
||||||
value: argocd
|
value: argocd
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
- name: ARGOCD_REPO_SERVER_NAME
|
||||||
|
value: {{ template "argo-cd.repoServer.fullname" . }}
|
||||||
- name: ARGOCD_RECONCILIATION_TIMEOUT
|
- name: ARGOCD_RECONCILIATION_TIMEOUT
|
||||||
valueFrom:
|
valueFrom:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
|
|
|
@ -75,6 +75,8 @@ spec:
|
||||||
{{- with (concat .Values.global.env .Values.server.env) }}
|
{{- with (concat .Values.global.env .Values.server.env) }}
|
||||||
{{- toYaml . | nindent 10 }}
|
{{- toYaml . | nindent 10 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
- name: ARGOCD_SERVER_NAME
|
||||||
|
value: {{ template "argo-cd.server.fullname" . }}
|
||||||
- name: ARGOCD_SERVER_INSECURE
|
- name: ARGOCD_SERVER_INSECURE
|
||||||
valueFrom:
|
valueFrom:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
|
|
Loading…
Reference in a new issue