about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ops/infra/kubernetes/https-lb/ingress.yaml10
1 files changed, 9 insertions, 1 deletions
diff --git a/ops/infra/kubernetes/https-lb/ingress.yaml b/ops/infra/kubernetes/https-lb/ingress.yaml
index b50ea21cee..930affec7a 100644
--- a/ops/infra/kubernetes/https-lb/ingress.yaml
+++ b/ops/infra/kubernetes/https-lb/ingress.yaml
@@ -9,7 +9,7 @@ metadata:
     networking.gke.io/managed-certificates: tazj-in, git-tazj-in, www-tazj-in, oslo-pub
 spec:
   rules:
-    # Route blog to the blog ...
+    # Route website to, well, the website ...
     - host: tazj.in
       http:
         paths:
@@ -17,6 +17,14 @@ spec:
             backend:
               serviceName: website
               servicePort: 8080
+    # Same for www.* (the redirect is handled by the website nginx)
+    - host: www.tazj.in
+      http:
+        paths:
+          - path: /*
+            backend:
+              serviceName: website
+              servicePort: 8080
     # Route git.tazj.in to the cgit pods
     - host: git.tazj.in
       http: