From 08219fa6ab5f5b8d6a236b00550e80d512ea060f Mon Sep 17 00:00:00 2001 From: slaventius Date: Fri, 10 Feb 2023 12:52:46 +0300 Subject: [PATCH] * --- deploy/auth-service.yaml | 3 +-- deploy/{auth-ingress.yaml => ingress.yaml} | 8 ++++---- 2 files changed, 5 insertions(+), 6 deletions(-) rename deploy/{auth-ingress.yaml => ingress.yaml} (65%) diff --git a/deploy/auth-service.yaml b/deploy/auth-service.yaml index 447dd85..e8535be 100644 --- a/deploy/auth-service.yaml +++ b/deploy/auth-service.yaml @@ -10,5 +10,4 @@ spec: app: auth-application ports: - protocol: TCP - port: 9993 - targetPort: 9994 + port: 9994 diff --git a/deploy/auth-ingress.yaml b/deploy/ingress.yaml similarity index 65% rename from deploy/auth-ingress.yaml rename to deploy/ingress.yaml index ca5e449..a05dd97 100644 --- a/deploy/auth-ingress.yaml +++ b/deploy/ingress.yaml @@ -1,16 +1,16 @@ apiVersion: networking.k8s.io/v1 kind: Ingress metadata: - name: auth-ingress + name: ingress spec: rules: - host: www.test3k.com http: paths: - - path: /api - pathType: ImplementationSpecific + - path: / + pathType: Prefix backend: service: name: auth-service port: - number: 9993 + number: 9994