summaryrefslogtreecommitdiffstats
path: root/kubernetes
diff options
context:
space:
mode:
authorBorislav Glozman <Borislav.Glozman@amdocs.com>2019-08-14 15:00:20 +0000
committerGerrit Code Review <gerrit@onap.org>2019-08-14 15:00:20 +0000
commita1f2436596b01f1db2191b2c6af59cf238d87f37 (patch)
treec019bccdb531150e4190f62d9ae5350c0837c256 /kubernetes
parenta3a05b55e7eb3f6611dac87c49754de760f8508f (diff)
parente071540975fc5042a982a01be55ba259879b0e3e (diff)
Merge "Fix identation in the ingress common template"
Diffstat (limited to 'kubernetes')
-rw-r--r--kubernetes/common/common/templates/_ingress.tpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/kubernetes/common/common/templates/_ingress.tpl b/kubernetes/common/common/templates/_ingress.tpl
index a2e5235bb4..9b274ad190 100644
--- a/kubernetes/common/common/templates/_ingress.tpl
+++ b/kubernetes/common/common/templates/_ingress.tpl
@@ -3,13 +3,13 @@
{{- if .Values.ingress.service -}}
{{- range .Values.ingress.service }}
- path: {{ .path }}
- backend:
+ backend:
serviceName: {{ .name }}
servicePort: {{ .port }}
{{- end }}
{{- else -}}
- path: {{ printf "/%s" .Chart.Name }}
- backend:
+ backend:
serviceName: {{ .Chart.Name }}
servicePort: {{ .Values.service.externalPort }}
{{- end -}}
a id='n147' href='#n147'>147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187