fix: correct indentation when configuring https on an app

This commit is contained in:
Jose Diaz-Gonzalez
2024-02-09 13:40:00 -05:00
committed by GitHub
parent f3bf6a2143
commit af7e720d2a

View File

@@ -29,10 +29,10 @@ spec:
{{- if and $config.web.tls.enabled (eq $port_map.scheme "https") }}
tls:
- hosts:
{{- range $ddx, $domain := $config.web.domains }}
{{- range $ddx, $domain := $config.web.domains }}
- {{ $domain | quote }}
{{- end }}
secretName: tls-{{ $.Values.global.app_name }}-{{ $processName }}
{{- end }}
secretName: tls-{{ $.Values.global.app_name }}-{{ $processName }}
{{- end }}
rules:
{{- range $ddx, $domain := $config.web.domains }}