Skip to content

Commit

Permalink
Update ingress to suit networking.k8s.io/v1 (#72)
Browse files Browse the repository at this point in the history
* Update ingress to suit networking.k8s.io/v1
* Add pathType to ingress path
  • Loading branch information
SharkofMirkwood authored Jan 6, 2022
1 parent 7052392 commit 21b3d52
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions helm/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,12 @@ spec:
paths:
{{- range .paths }}
- path: {{ . }}
pathType: ImplementationSpecific
backend:
serviceName: {{ $fullName }}
servicePort: {{ $svcPort }}
service:
name: {{ $fullName }}
port:
number: {{ $svcPort }}
{{- end }}
{{- end }}
{{- end }}

0 comments on commit 21b3d52

Please sign in to comment.