From e4434dd60273e8ee04ac78ac1806dcd5dd34c56b Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sat, 26 Oct 2024 09:28:11 -0400 Subject: [PATCH] bug: fix issue with nginx and use ImplementationSpecific path type --- base/api/ingress-ws.yaml | 2 +- base/api/ingress.yaml | 2 +- base/minio/ingress.yaml | 2 +- base/web/ingress.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/base/api/ingress-ws.yaml b/base/api/ingress-ws.yaml index f9e489f..0cab6ba 100644 --- a/base/api/ingress-ws.yaml +++ b/base/api/ingress-ws.yaml @@ -17,4 +17,4 @@ spec: port: number: 5585 path: /(.*) - pathType: Prefix \ No newline at end of file + pathType: ImplementationSpecific \ No newline at end of file diff --git a/base/api/ingress.yaml b/base/api/ingress.yaml index e586a3f..bf4eede 100644 --- a/base/api/ingress.yaml +++ b/base/api/ingress.yaml @@ -102,7 +102,7 @@ spec: port: number: 5585 path: /matches/[^/]+/backup-rounds/map/.* - pathType: Prefix + pathType: ImplementationSpecific --- apiVersion: networking.k8s.io/v1 kind: Ingress diff --git a/base/minio/ingress.yaml b/base/minio/ingress.yaml index 4c04776..1cf0078 100644 --- a/base/minio/ingress.yaml +++ b/base/minio/ingress.yaml @@ -17,4 +17,4 @@ spec: port: number: 9090 path: /(.*) - pathType: Prefix + pathType: ImplementationSpecific diff --git a/base/web/ingress.yaml b/base/web/ingress.yaml index 9495855..5dc44a4 100644 --- a/base/web/ingress.yaml +++ b/base/web/ingress.yaml @@ -17,4 +17,4 @@ spec: port: number: 3000 path: /(.*) - pathType: Prefix \ No newline at end of file + pathType: ImplementationSpecific \ No newline at end of file