ba99111753
- Namespace: media (created via Terraform)
- Storage: hostPath PV at /media on Legion (movies, tv/shows, tv/anime, downloads)
- VPN: gluetun sidecar with ProtonVPN WireGuard (US-TX#253), all torrent traffic tunneled
- Radarr: movie automation with /media/movies root
- Sonarr: TV/anime automation with /media/tv/{shows,anime} roots
- Prowlarr: indexer aggregator (YTS, 1337x, Nyaa for anime)
- qBittorrent: torrent client, network namespaced behind gluetun VPN
- Bazarr: automatic subtitle downloads (connects to Radarr + Sonarr)
- Overseerr: family request portal at watch.nook.family
- Plex: media server at plex.nook.family
59 lines
1.5 KiB
YAML
59 lines
1.5 KiB
YAML
# watch.nook.family → Overseerr (family request portal)
|
|
# NOTE: After deploying, add this route in Cloudflare Zero Trust:
|
|
# Zero Trust > Networks > Tunnels > neural-platform > Public Hostname
|
|
# Hostname: watch.nook.family | Service: http://traefik.kube-system:80
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: overseerr
|
|
namespace: media
|
|
annotations:
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
spec:
|
|
ingressClassName: traefik
|
|
tls:
|
|
- hosts:
|
|
- watch.nook.family
|
|
secretName: overseerr-tls
|
|
rules:
|
|
- host: watch.nook.family
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: overseerr
|
|
port:
|
|
number: 5055
|
|
---
|
|
# plex.nook.family → Plex
|
|
# NOTE: Also add in Cloudflare Zero Trust:
|
|
# Hostname: plex.nook.family | Service: http://traefik.kube-system:80
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: plex
|
|
namespace: media
|
|
annotations:
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
spec:
|
|
ingressClassName: traefik
|
|
tls:
|
|
- hosts:
|
|
- plex.nook.family
|
|
secretName: plex-tls
|
|
rules:
|
|
- host: plex.nook.family
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: plex
|
|
port:
|
|
number: 32400
|