From bf45bfca7b36683ea7437ccfdb32b70a25ddc5a4 Mon Sep 17 00:00:00 2001 From: James Allenby Date: Wed, 1 Jul 2026 20:04:47 +0100 Subject: [PATCH] feat: add HTTPS listeners for auth and grafana --- manifests/gateway.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/manifests/gateway.yaml b/manifests/gateway.yaml index bdc0dd7..6bef86a 100644 --- a/manifests/gateway.yaml +++ b/manifests/gateway.yaml @@ -14,3 +14,25 @@ spec: allowedRoutes: namespaces: from: All + - name: websecure-auth + hostname: auth.solidish.dev + port: 8443 + protocol: HTTPS + tls: + mode: Terminate + certificateRefs: + - name: auth-solidish-dev-tls + allowedRoutes: + namespaces: + from: All + - name: websecure-grafana + hostname: grafana.solidish.dev + port: 8443 + protocol: HTTPS + tls: + mode: Terminate + certificateRefs: + - name: grafana-solidish-dev-tls + allowedRoutes: + namespaces: + from: All