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