Browse Source

Fixed remaining ingress manifest

pull/1725/head
Sumit Ghosh 3 years ago
parent
commit
40c19829fc
1 changed files with 16 additions and 10 deletions
  1. +16
    -10
      deploy/k8s/nginx-ingress/local-dockerk8s/mvc-fix.yaml

+ 16
- 10
deploy/k8s/nginx-ingress/local-dockerk8s/mvc-fix.yaml View File

@ -11,12 +11,15 @@ metadata:
namespace: default
spec:
rules:
- http:
http:
paths:
- backend:
serviceName: webmvc
servicePort: http
path: /webmvc
- path: /webmvc
pathType: Prefix
backend:
service:
name: webmvc
port:
number: 80
---
apiVersion: networking.k8s.io/v1
kind: Ingress
@ -31,9 +34,12 @@ metadata:
namespace: default
spec:
rules:
- http:
http:
paths:
- backend:
serviceName: identity
servicePort: http
path: /identity
- path: /identity
pathType: Prefix
backend:
service:
name: identity
port:
number: 80

Loading…
Cancel
Save