2023-11-17 10:56:26 +00:00
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
app: radarr
|
|
|
|
name: radarr
|
|
|
|
spec:
|
|
|
|
replicas: 1
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
app: radarr
|
2024-10-03 15:56:29 +00:00
|
|
|
strategy:
|
|
|
|
type: Recreate
|
2023-11-17 10:56:26 +00:00
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
creationTimestamp: null
|
|
|
|
labels:
|
|
|
|
app: radarr
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- image: hotio/radarr:release
|
|
|
|
imagePullPolicy: IfNotPresent
|
|
|
|
name: radarr
|
|
|
|
ports:
|
|
|
|
- containerPort: 7878
|
|
|
|
name: http
|
|
|
|
protocol: TCP
|
2024-10-03 15:58:15 +00:00
|
|
|
resources:
|
|
|
|
requests:
|
|
|
|
cpu: 25m
|
|
|
|
memory: 920733364
|
2023-11-17 10:56:26 +00:00
|
|
|
volumeMounts:
|
|
|
|
- mountPath: /config
|
|
|
|
name: config
|
|
|
|
- mountPath: /data
|
|
|
|
name: data
|
|
|
|
- mountPath: /films
|
|
|
|
name: films
|
|
|
|
volumes:
|
|
|
|
- name: config
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: radarr-config-data
|
|
|
|
- name: films
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: smb-films
|
|
|
|
- name: data
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: smb-usenet
|