From 3d72f04b1482817494d32407ba1f2836f3dc0d29 Mon Sep 17 00:00:00 2001 From: Ryan Moon Date: Fri, 3 Apr 2026 21:14:43 -0500 Subject: [PATCH] fix: add /api ingress path routing to backend --- chart/templates/ingress.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/chart/templates/ingress.yaml b/chart/templates/ingress.yaml index 7515fab..c32fb7d 100644 --- a/chart/templates/ingress.yaml +++ b/chart/templates/ingress.yaml @@ -19,6 +19,13 @@ spec: - host: {{ .Values.ingress.host }} http: paths: + - path: /api + pathType: Prefix + backend: + service: + name: {{ .Release.Name }}-backend + port: + number: {{ .Values.backend.port }} - path: / pathType: Prefix backend: