Add 80->443 redirect to all istio gateways

This commit is contained in:
Amarpreet Minhas 2023-07-10 21:01:30 +00:00
parent 75122d0c4c
commit 901c0b699c

View file

@ -39,6 +39,17 @@ spec:
- {{ .Values.istio.commonName }}
{{- range .Values.istio.sans }}
- {{ . }}
{{- end }}
- port:
number: 80
name: https
protocol: HTTP
tls:
httpsRedirect: true
hosts:
- {{ .Values.istio.commonName }}
{{- range .Values.istio.sans }}
- {{ . }}
{{- end }}
...
---