From 70a9e912c3177787b0c733b79541629d8ff2562e Mon Sep 17 00:00:00 2001 From: Rudi MK Date: Wed, 3 Jan 2024 09:33:11 +0100 Subject: [PATCH] Reversed a change made in #1121 where we were trying to assign wildcard certs only to wildcard domains. --- applications/web/templates/ingress.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/web/templates/ingress.yaml b/applications/web/templates/ingress.yaml index 700b70883..d9dcd20f1 100644 --- a/applications/web/templates/ingress.yaml +++ b/applications/web/templates/ingress.yaml @@ -64,7 +64,7 @@ spec: - hosts: - {{ . | quote }} {{- if not $.Values.ingress.useDefaultIngressTLSSecret }} - {{ if and $.Values.ingress.wildcard (hasPrefix "*" .) }} + {{ if $.Values.ingress.wildcard }} secretName: wildcard-cert-tls {{ else if $.Values.ingress.customTls.enabled }} secretName: {{ $.Values.ingress.customTls.customTlsSecret }}