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
75 lines
1.7 KiB
YAML
75 lines
1.7 KiB
YAML
# Prowlarr — indexer aggregator (connects to torrent trackers, feeds Radarr + Sonarr)
|
|
# After deploy, add indexers at prowlarr:9696:
|
|
# Recommended public indexers for movies/TV/anime:
|
|
# - YTS (movies — excellent quality, very reliable)
|
|
# - 1337x (general)
|
|
# - TorrentGalaxy (general)
|
|
# - Nyaa.si (anime — essential for anime/manga)
|
|
# - AnimeTosho (anime with good subtitle/dub tagging)
|
|
# Then sync to Radarr + Sonarr via Settings > Apps
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: prowlarr
|
|
namespace: media
|
|
labels:
|
|
app: prowlarr
|
|
spec:
|
|
replicas: 1
|
|
strategy:
|
|
type: Recreate
|
|
selector:
|
|
matchLabels:
|
|
app: prowlarr
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: prowlarr
|
|
spec:
|
|
containers:
|
|
- name: prowlarr
|
|
image: lscr.io/linuxserver/prowlarr:latest
|
|
env:
|
|
- name: PUID
|
|
value: "1000"
|
|
- name: PGID
|
|
value: "1000"
|
|
- name: TZ
|
|
value: "America/Chicago"
|
|
ports:
|
|
- containerPort: 9696
|
|
volumeMounts:
|
|
- name: config
|
|
mountPath: /config
|
|
resources:
|
|
requests:
|
|
memory: 128Mi
|
|
cpu: 50m
|
|
limits:
|
|
memory: 512Mi
|
|
cpu: 300m
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /ping
|
|
port: 9696
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 30
|
|
volumes:
|
|
- name: config
|
|
persistentVolumeClaim:
|
|
claimName: prowlarr-config
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: prowlarr
|
|
namespace: media
|
|
spec:
|
|
selector:
|
|
app: prowlarr
|
|
ports:
|
|
- name: http
|
|
port: 9696
|
|
targetPort: 9696
|
|
type: ClusterIP
|