2023-04-03 05:12:51 +00:00
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
name: radarr
|
2023-04-06 23:53:18 +00:00
|
|
|
namespace: download
|
2023-04-03 05:12:51 +00:00
|
|
|
|
|
|
|
labels:
|
|
|
|
app: radarr
|
|
|
|
kubernetes.io/name: "radarr"
|
|
|
|
spec:
|
|
|
|
replicas: 1
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
app: radarr
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: radarr
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- name: radarr
|
|
|
|
image: linuxserver/radarr
|
|
|
|
imagePullPolicy: Always
|
|
|
|
ports:
|
|
|
|
- containerPort: 7878
|
|
|
|
env:
|
|
|
|
- name: PGID
|
|
|
|
value: "1000"
|
|
|
|
- name: PUID
|
|
|
|
value: "1000"
|
|
|
|
volumeMounts:
|
|
|
|
- name: radarr
|
|
|
|
mountPath: /config
|
2023-04-06 23:53:18 +00:00
|
|
|
- name: radarr-download-storage
|
2023-04-03 05:12:51 +00:00
|
|
|
mountPath: /storage
|
|
|
|
volumes:
|
|
|
|
- name: radarr
|
|
|
|
hostPath:
|
|
|
|
path: /mnt/MainPool/Kubernetes/radarr
|
2023-04-06 23:53:18 +00:00
|
|
|
- name: radarr-download-storage
|
2023-04-03 05:12:51 +00:00
|
|
|
hostPath:
|
|
|
|
path: /mnt/MainPool/Media
|