about summary refs log tree commit diff
path: root/infra/kubernetes/https-lb/ingress.yaml
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-12-20T18·42+0000
committerVincent Ambo <tazjin@google.com>2019-12-20T18·42+0000
commitc3586aa8bacb9f2b882c81c938e4c89ad3d95675 (patch)
treeb4cf5a8ec243a00b4bbdb767c956f78a8f1d7c47 /infra/kubernetes/https-lb/ingress.yaml
parent0dee62cd7b789756864deddb1d7f32293489d735 (diff)
feat(infra/k8s): Rewrite cgit URLs by routing them through nginx r/229
Configures nginx to rewrite all requests to cgit, except for those
retrieving static files, to `/depot/`.

In combination with the previous commits that apply patches to cgit
itself, this effectively means that the depot is rendered on the site
root.

This is pretty cool: It lets people do stuff like `git clone
https://git.tazj.in` and get the depot!
Diffstat (limited to 'infra/kubernetes/https-lb/ingress.yaml')
-rw-r--r--infra/kubernetes/https-lb/ingress.yaml19
1 files changed, 11 insertions, 8 deletions
diff --git a/infra/kubernetes/https-lb/ingress.yaml b/infra/kubernetes/https-lb/ingress.yaml
index 0a3092da20..069771a421 100644
--- a/infra/kubernetes/https-lb/ingress.yaml
+++ b/infra/kubernetes/https-lb/ingress.yaml
@@ -8,20 +8,23 @@ metadata:
   annotations:
     networking.gke.io/managed-certificates: tazj-in, git-tazj-in, www-tazj-in, oslo-pub
 spec:
-  # Default traffic is routed to the blog, in case people go to
-  # peculiar hostnames.
-  backend:
-    serviceName: tazblog
-    servicePort: 8000
   rules:
+    # Route blog to the blog ...
+    - host: tazj.in
+      http:
+        paths:
+          - path: /*
+            backend:
+              serviceName: tazblog
+              servicePort: 8000
     # Route git.tazj.in to the cgit pods
     - host: git.tazj.in
       http:
         paths:
-          - path: /
+          - path: /*
             backend:
-              serviceName: cgit
-              servicePort: 2448
+              serviceName: nginx
+              servicePort: 6756
     # Route oslo.pub to the nginx instance which serves redirects
     - host: oslo.pub
       http: