44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: radarr
|
||
|
namespace: pvr
|
||
|
labels:
|
||
|
app: radarr
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: radarr
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: radarr
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: radarr
|
||
|
# image: bv11-cr01.bessems.eu/proxy/linuxserver/radarr:nightly
|
||
|
image: linuxserver/radarr:nightly
|
||
|
imagePullPolicy: Always
|
||
|
ports:
|
||
|
- name: web
|
||
|
containerPort: 7878
|
||
|
volumeMounts:
|
||
|
- mountPath: /config
|
||
|
name: flexvolsmb-radarr-config
|
||
|
- mountPath: /movies
|
||
|
name: flexvolsmb-pvr-movies
|
||
|
- mountPath: /downloads
|
||
|
name: smb-pvr-volatile
|
||
|
subPath: downloads
|
||
|
volumes:
|
||
|
- name: flexvolsmb-radarr-config
|
||
|
persistentVolumeClaim:
|
||
|
claimName: flexvolsmb-radarr-config
|
||
|
- name: flexvolsmb-pvr-movies
|
||
|
persistentVolumeClaim:
|
||
|
claimName: flexvolsmb-pvr-movies
|
||
|
- name: smb-pvr-volatile
|
||
|
persistentVolumeClaim:
|
||
|
claimName: smb-pvr-volatile
|