From 89467a8bf154aa19ad41c6775dc4a4f7ce6dfc04 Mon Sep 17 00:00:00 2001 From: Alex Humphreys Date: Tue, 18 Dec 2018 15:24:33 +0100 Subject: [PATCH] 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 --- pkg/chartutil/create.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/chartutil/create.go b/pkg/chartutil/create.go index 36b07adb5..8f713fcd1 100644 --- a/pkg/chartutil/create.go +++ b/pkg/chartutil/create.go @@ -158,12 +158,12 @@ spec: - host: {{ . | quote }} http: paths: - {{- range $ingressPaths }} + {{- range $ingressPaths }} - path: {{ . }} backend: serviceName: {{ $fullName }} servicePort: http - {{- end }} + {{- end }} {{- end }} {{- end }} `