Fix(helm): Use spaces in ingress template

The rest of the ingress template was using spaces, just these two lines
were tabs.

Signed-off-by: Alex Humphreys <alex.humphreys@here.com>
pull/5074/head
Alex Humphreys 6 years ago
parent 6e5c2d5706
commit 89467a8bf1

@ -158,12 +158,12 @@ spec:
- host: {{ . | quote }} - host: {{ . | quote }}
http: http:
paths: paths:
{{- range $ingressPaths }} {{- range $ingressPaths }}
- path: {{ . }} - path: {{ . }}
backend: backend:
serviceName: {{ $fullName }} serviceName: {{ $fullName }}
servicePort: http servicePort: http
{{- end }} {{- end }}
{{- end }} {{- end }}
{{- end }} {{- end }}
` `

Loading…
Cancel
Save