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>

Signed-off-by: Kevin Labesse <kevin@labesse.me>
pull/4961/head
Alex Humphreys 7 years ago
parent 4aeb9c97b3
commit e96c8ddc41

@ -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