2026-03-08 04:19:04 +00:00
|
|
|
apiVersion: apps/v1
|
|
|
|
|
kind: Deployment
|
2026-03-17 08:11:22 +00:00
|
|
|
metadata:
|
2026-03-08 04:19:04 +00:00
|
|
|
name: radarr
|
|
|
|
|
namespace: media
|
|
|
|
|
spec:
|
|
|
|
|
replicas: 1
|
|
|
|
|
selector:
|
|
|
|
|
matchLabels:
|
|
|
|
|
app: radarr
|
|
|
|
|
template:
|
2026-03-17 08:11:22 +00:00
|
|
|
metadata:
|
2026-03-08 04:19:04 +00:00
|
|
|
labels:
|
|
|
|
|
app: radarr
|
|
|
|
|
spec:
|
|
|
|
|
containers:
|
|
|
|
|
- name: radarr
|
|
|
|
|
image: linuxserver/radarr
|
|
|
|
|
env:
|
|
|
|
|
- name: PUID
|
|
|
|
|
value: "1000"
|
|
|
|
|
- name: PGID
|
|
|
|
|
value: "1000"
|
|
|
|
|
volumeMounts:
|
|
|
|
|
- name: config
|
|
|
|
|
mountPath: /config
|
|
|
|
|
- name: videos
|
|
|
|
|
mountPath: /movies
|
|
|
|
|
- name: downloads
|
|
|
|
|
mountPath: /downloads
|
2026-04-14 07:34:45 +00:00
|
|
|
- name: jellyfin-nas
|
|
|
|
|
mountPath: /nas
|
2026-03-08 04:19:04 +00:00
|
|
|
ports:
|
|
|
|
|
- containerPort: 7878
|
|
|
|
|
volumes:
|
|
|
|
|
- name: config
|
|
|
|
|
persistentVolumeClaim:
|
|
|
|
|
claimName: radarr-config
|
|
|
|
|
- name: videos
|
|
|
|
|
persistentVolumeClaim:
|
|
|
|
|
claimName: jellyfin-media
|
|
|
|
|
- name: downloads
|
|
|
|
|
persistentVolumeClaim:
|
|
|
|
|
claimName: qbittorrent-downloads
|
2026-04-14 07:34:45 +00:00
|
|
|
- name: jellyfin-nas
|
|
|
|
|
persistentVolumeClaim:
|
|
|
|
|
claimName: jellyfin-nas
|