P6: Migrate Kiwix and Transmission to Kubernetes #39

Merged
eblume merged 8 commits from feature/p6-kiwix-transmission-take2 into main 2026-01-21 18:07:41 -08:00
2 changed files with 22 additions and 24 deletions
Showing only changes of commit f761590458 - Show all commits

Fix Tailscale Ingress format for torrent and kiwix

Use defaultBackend + tls.hosts instead of rules, matching other working
ingresses in the cluster.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Erich Blume 2026-01-21 16:58:38 -08:00

View file

@ -2,18 +2,17 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: kiwix
name: kiwix-tailscale
namespace: kiwix
annotations:
tailscale.com/proxy-class: "default"
spec:
ingressClassName: tailscale
rules:
- host: kiwix
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: kiwix
port:
number: 80
defaultBackend:
service:
name: kiwix
port:
number: 80
tls:
- hosts:
- kiwix

View file

@ -2,18 +2,17 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: transmission
name: transmission-tailscale
namespace: torrent
annotations:
tailscale.com/proxy-class: "default"
spec:
ingressClassName: tailscale
rules:
- host: torrent
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: transmission
port:
number: 9091
defaultBackend:
service:
name: transmission
port:
number: 9091
tls:
- hosts:
- torrent