Refactor PVR services
This commit is contained in:
43
services/PVR/Radarr/deployment-radarr.yaml
Normal file
43
services/PVR/Radarr/deployment-radarr.yaml
Normal file
@ -0,0 +1,43 @@
|
||||
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
|
Reference in New Issue
Block a user