From 738ec0156e19da71f2c87e1666218978da2a37a4 Mon Sep 17 00:00:00 2001 From: James Blair Date: Sun, 1 May 2022 10:03:54 +1200 Subject: [PATCH] Fixed ingress spec for backend service name and port. --- grocy/templates/ingress.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/grocy/templates/ingress.yaml b/grocy/templates/ingress.yaml index 68c14bf..c07a6c3 100644 --- a/grocy/templates/ingress.yaml +++ b/grocy/templates/ingress.yaml @@ -24,6 +24,9 @@ spec: http: paths: - path: / + pathType: prefix backend: - serviceName: grocy - servicePort: 80 + service: + name: grocy + port: + number: 80