Files
infrastructure/servers/legion/k8s/media/bazarr.yaml
T
Will Anderson ba99111753 Add media stack: Plex, Radarr, Sonarr, Prowlarr, qBittorrent, Bazarr, Overseerr
- 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
2026-04-10 22:50:13 -05:00

78 lines
1.9 KiB
YAML

# Bazarr — automatic subtitle downloader
# Connects to Radarr + Sonarr, downloads subtitles from OpenSubtitles/Subscene/etc.
# After deploy, configure at bazarr:6767:
# 1. Settings > Radarr: URL=http://radarr:7878, API key from Radarr Settings > General
# 2. Settings > Sonarr: URL=http://sonarr:8989, API key from Sonarr Settings > General
# 3. Settings > Providers: add OpenSubtitles.com (free account) for best coverage
# 4. Settings > Languages: add English (and any other desired languages)
apiVersion: apps/v1
kind: Deployment
metadata:
name: bazarr
namespace: media
labels:
app: bazarr
spec:
replicas: 1
strategy:
type: Recreate
selector:
matchLabels:
app: bazarr
template:
metadata:
labels:
app: bazarr
spec:
containers:
- name: bazarr
image: lscr.io/linuxserver/bazarr:latest
env:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
- name: TZ
value: "America/Chicago"
ports:
- containerPort: 6767
volumeMounts:
- name: config
mountPath: /config
- name: media
mountPath: /media
resources:
requests:
memory: 128Mi
cpu: 50m
limits:
memory: 512Mi
cpu: 200m
livenessProbe:
httpGet:
path: /
port: 6767
initialDelaySeconds: 30
periodSeconds: 30
volumes:
- name: config
persistentVolumeClaim:
claimName: bazarr-config
- name: media
persistentVolumeClaim:
claimName: media-data
---
apiVersion: v1
kind: Service
metadata:
name: bazarr
namespace: media
spec:
selector:
app: bazarr
ports:
- name: http
port: 6767
targetPort: 6767
type: ClusterIP