From 0fcb64343e8b89a4b24d348332a0d16d4eb86a7f Mon Sep 17 00:00:00 2001 From: Marcel Henrich Date: Tue, 10 Oct 2023 10:45:20 +0200 Subject: [PATCH] Fix local ingress by setting host to localhost --- local/kubernetes/infrastructure/service-ingress.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/local/kubernetes/infrastructure/service-ingress.yaml b/local/kubernetes/infrastructure/service-ingress.yaml index 2db471e4..dd0b1045 100644 --- a/local/kubernetes/infrastructure/service-ingress.yaml +++ b/local/kubernetes/infrastructure/service-ingress.yaml @@ -9,7 +9,8 @@ metadata: spec: ingressClassName: nginx rules: - - http: + - host: localhost + http: paths: - path: "/prometheus/?(.*)" pathType: ImplementationSpecific @@ -29,7 +30,8 @@ metadata: spec: ingressClassName: nginx rules: - - http: + - host: localhost + http: paths: - path: "/grafana/?(.*)" pathType: ImplementationSpecific @@ -49,7 +51,8 @@ metadata: spec: ingressClassName: nginx rules: - - http: + - host: localhost + http: paths: - path: "/jaeger/?(.*)" pathType: ImplementationSpecific @@ -70,7 +73,8 @@ metadata: spec: ingressClassName: nginx rules: - - http: + - host: localhost + http: paths: - path: "/kibana/?(.*)" pathType: ImplementationSpecific