fix(ingress): restore TLS for app ingresses on test contour

This commit is contained in:
sova-ci
2026-06-09 16:37:31 +03:00
committed by Valeriy Petrov
parent 63e6446422
commit c8a6d8f433
8 changed files with 60 additions and 0 deletions
+11
View File
@@ -193,8 +193,19 @@ kind: Ingress
metadata:
name: backend
namespace: {{ .Values.namespace }}
{{- if .Values.ingress.tls.enabled }}
annotations:
cert-manager.io/cluster-issuer: {{ .Values.ingress.tls.clusterIssuer | quote }}
nginx.ingress.kubernetes.io/ssl-redirect: "true"
{{- end }}
spec:
ingressClassName: {{ .Values.ingress.className }}
{{- if .Values.ingress.tls.enabled }}
tls:
- hosts:
- {{ .Values.ingress.host }}
secretName: {{ .Values.ingress.tls.secretName }}
{{- end }}
rules:
- host: {{ .Values.ingress.host }}
http: