From d2f9c4795f8ba3bd078435c84ff42a0ecebf90bb Mon Sep 17 00:00:00 2001 From: Khue Doan Date: Sun, 11 Jan 2026 16:00:08 +0000 Subject: [PATCH] feat: deploy Gateway --- platform/staging/istio.yaml | 16 ++++++++++++++++ 1 file(s) changed, 16 insertion(s)(+), 0 deletion(s)(-) diff --git a/platform/staging/istio.yaml b/platform/staging/istio.yaml --- a/platform/staging/istio.yaml +++ b/platform/staging/istio.yaml @@ -84,3 +84,19 @@ targetNamespace: istio-system values: profile: ambient +--- +apiVersion: gateway.networking.k8s.io/v1 +kind: Gateway +metadata: + name: gateway + namespace: istio-system # TODO dedicated namespace? +spec: + gatewayClassName: istio + listeners: + - name: default + hostname: "*.staging.khuedoan.com" # TODO make this var/configurable + port: 80 # TODO HTTPS by default, only use HTTP for ACME HTTP-01 + protocol: HTTP + allowedRoutes: + namespaces: + from: All -- tangled.sh