diff options
author | Alexander Dehn <Alexander.Dehn@highstreet-technologies.com> | 2023-04-27 13:28:40 +0000 |
---|---|---|
committer | demskeq8 <alexander.dehn@highstreet-technologies.com> | 2023-04-27 14:04:02 +0000 |
commit | a041dbe508189d6bd67c3e172b21cfc31eb9c319 (patch) | |
tree | e873fbfaf4e48ee88644835eb392388ddc8a931c | |
parent | c5f82ecf3d556e1f623601e8c64a8abac66d2542 (diff) |
[COMMON] Fix template common.nginxIngress rendering issue
add LF in case of tls config
Issue-ID: OOM-3172
Signed-off-by: demskeq8 <alexander.dehn@highstreet-technologies.com>
Change-Id: I34d8a38972e568c67dfbacc2fe97132789379628
-rw-r--r-- | kubernetes/common/common/templates/_ingress.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/common/common/templates/_ingress.tpl b/kubernetes/common/common/templates/_ingress.tpl index a9ffd70f96..db276d546c 100644 --- a/kubernetes/common/common/templates/_ingress.tpl +++ b/kubernetes/common/common/templates/_ingress.tpl @@ -356,7 +356,7 @@ spec: {{ toYaml $dot.Values.ingress.tls | indent 4 }} {{- end -}} {{- if $dot.Values.ingress.config -}} -{{- if $dot.Values.ingress.config.tls -}} +{{- if $dot.Values.ingress.config.tls }} tls: - hosts: {{- range $dot.Values.ingress.service }}{{ $baseaddr := required "baseaddr" .baseaddr }} |