From fc222881e6f6f2002ef63d91dc522161a30180d8 Mon Sep 17 00:00:00 2001 From: Linus Vogel Date: Mon, 29 Jun 2026 20:35:37 +0200 Subject: [PATCH] apparently i need to quote strings --- helm/istiod/templates/gateway.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/helm/istiod/templates/gateway.yaml b/helm/istiod/templates/gateway.yaml index 9f318c8..5ff9b8a 100644 --- a/helm/istiod/templates/gateway.yaml +++ b/helm/istiod/templates/gateway.yaml @@ -12,8 +12,8 @@ spec: name: http protocol: HTTP hosts: - - *.apps.linvogel.ch - - *.apps.linvogel.internal + - '*.apps.linvogel.ch' + - '*.apps.linvogel.internal' tls: httpsRedirect: true # sends 301 redirect for http requests - port: @@ -21,8 +21,8 @@ spec: name: https-443 protocol: HTTPS hosts: - - *.apps.linvogel.ch - - *.apps.linvogel.internal + - '*.apps.linvogel.ch' + - '*.apps.linvogel.internal' tls: mode: SIMPLE serverCertificate: /etc/certs/servercert.pem