Browse Source

Fixed the identity ingress manifest

pull/1725/head
Sumit Ghosh 3 years ago
parent
commit
5fcf632df7
1 changed files with 7 additions and 4 deletions
  1. +7
    -4
      deploy/k8s/helm/identity-api/templates/ingress-dockerk8s.yaml

+ 7
- 4
deploy/k8s/helm/identity-api/templates/ingress-dockerk8s.yaml View File

@ -25,9 +25,12 @@ spec:
rules:
- http:
paths:
- backend:
serviceName: {{ $serviceName }}
servicePort: http
path: {{ $ingressPath }}
- path: {{ $ingressPath }}
pathType: Prefix
backend:
service:
name: {{ $serviceName }}
port:
number: 80
{{- end -}}
{{- end -}}

Loading…
Cancel
Save