diff --git a/argo/istio-ingress/templates/istio-ingress.yaml b/argo/istio-ingress/templates/istio-ingress.yaml index 9a25cdd..0b724ec 100644 --- a/argo/istio-ingress/templates/istio-ingress.yaml +++ b/argo/istio-ingress/templates/istio-ingress.yaml @@ -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 }} ... ---