From 2e9cd98756ec6e4a9684cc8b8940562d3418c7c0 Mon Sep 17 00:00:00 2001 From: gyajangi1 Date: Thu, 19 Dec 2024 12:29:05 +0530 Subject: [PATCH] reverted changes Signed-off-by: gyajangi1 --- charts/argo-cd/templates/argocd-server/ingress.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/argo-cd/templates/argocd-server/ingress.yaml b/charts/argo-cd/templates/argocd-server/ingress.yaml index b842c49f..27b7e6ba 100644 --- a/charts/argo-cd/templates/argocd-server/ingress.yaml +++ b/charts/argo-cd/templates/argocd-server/ingress.yaml @@ -28,8 +28,8 @@ spec: {{- with .Values.server.ingress.extraPaths }} {{- tpl (toYaml .) $ | nindent 10 }} {{- end }} - - path: {{ tpl .Values.server.ingress.path $ }} - pathType: {{ tpl .Values.server.ingress.pathType $ }} + - path: {{ .Values.server.ingress.path }} + pathType: {{ $.Values.server.ingress.pathType }} backend: service: name: {{ include "argo-cd.server.fullname" . }} @@ -39,8 +39,8 @@ spec: - host: {{ tpl .name $ | quote }} http: paths: - - path: {{ tpl (default $.Values.server.ingress.path .path) $ }} - pathType: {{ tpl (default $.Values.server.ingress.pathType .pathType) $ }} + - path: {{ default $.Values.server.ingress.path .path }} + pathType: {{ default $.Values.server.ingress.pathType .pathType }} backend: service: name: {{ include "argo-cd.server.fullname" $ }}