From a886fd5798601178803246ffb38f4a49d18cf42c Mon Sep 17 00:00:00 2001 From: Pandelis Zembashis Date: Fri, 20 Dec 2024 12:27:36 +0000 Subject: [PATCH 1/2] fix(ingress): update path to /coder for ingress rules Co-authored-by: Genie --- helm/coder/templates/ingress.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/coder/templates/ingress.yaml b/helm/coder/templates/ingress.yaml index 7dd2a1389e233..8e8ba30d547ec 100644 --- a/helm/coder/templates/ingress.yaml +++ b/helm/coder/templates/ingress.yaml @@ -19,7 +19,7 @@ spec: - host: {{ .Values.coder.ingress.host | quote }} http: paths: - - path: / + - path: /coder pathType: Prefix backend: service: @@ -31,7 +31,7 @@ spec: - host: {{ include "coder.ingressWildcardHost" . | quote }} http: paths: - - path: / + - path: /coder pathType: Prefix backend: service: From 627e055edd206e1be2af6e03169db8f6eb387eef Mon Sep 17 00:00:00 2001 From: Pandelis Zembashis Date: Fri, 20 Dec 2024 14:45:02 +0000 Subject: [PATCH 2/2] fix(ingress): change pathType from Prefix to Exact for /coder Co-authored-by: Genie --- helm/coder/templates/ingress.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/coder/templates/ingress.yaml b/helm/coder/templates/ingress.yaml index 8e8ba30d547ec..3e5fa7a34f3fc 100644 --- a/helm/coder/templates/ingress.yaml +++ b/helm/coder/templates/ingress.yaml @@ -20,7 +20,7 @@ spec: http: paths: - path: /coder - pathType: Prefix + pathType: Exact backend: service: name: coder @@ -32,7 +32,7 @@ spec: http: paths: - path: /coder - pathType: Prefix + pathType: Exact backend: service: name: coder