From d146ab76d8108a88c7920baf191a9435f178b036 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Sun, 29 Jun 2025 12:59:59 +0200 Subject: [PATCH] fix(k8s): update ingress configuration for backend service Add pathType as Prefix to the ingress path definition. Update the backend service reference to use the new format with 'service' instead of 'serviceName' for improved clarity and adherence to Kubernetes API standards. --- k8s/ingress-test.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/k8s/ingress-test.yaml b/k8s/ingress-test.yaml index 0b1ecdc..164d83c 100644 --- a/k8s/ingress-test.yaml +++ b/k8s/ingress-test.yaml @@ -11,9 +11,12 @@ spec: http: paths: - path: / + pathType: Prefix backend: - serviceName: auth0mock - servicePort: 3333 + service: + name: auth0mock + port: + number: 3333 tls: - hosts: - auth0