From 700df488fb98082220f63c1dd3bab1ddef77f6ef Mon Sep 17 00:00:00 2001 From: Oleksandr Saulyak Date: Tue, 8 Oct 2024 14:39:38 +0300 Subject: [PATCH] added ARGOCD_SERVER_ROOTPATH with default value from configmap --- charts/argo-cd/templates/acr-controller/deployment.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/charts/argo-cd/templates/acr-controller/deployment.yaml b/charts/argo-cd/templates/acr-controller/deployment.yaml index a382029a8..b967effda 100644 --- a/charts/argo-cd/templates/acr-controller/deployment.yaml +++ b/charts/argo-cd/templates/acr-controller/deployment.yaml @@ -88,6 +88,12 @@ spec: name: argocd-cmd-params-cm key: acr.listen.address optional: true + - name: ARGOCD_SERVER_ROOTPATH + valueFrom: + configMapKeyRef: + key: server.rootpath + name: argocd-cmd-params-cm + optional: true {{- with .Values.acrController.envFrom }} envFrom: {{- toYaml . | nindent 10 }}