Data is slightly needed

Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
This commit is contained in:
Martyn 2023-02-11 17:52:01 +01:00
parent 9a946b0d9f
commit fd082ea85b
2 changed files with 18 additions and 0 deletions

View File

@ -22,3 +22,11 @@ spec:
- name: http
containerPort: 7878
protocol: TCP
volumeMounts:
- name: config
mountPath: /config
volumes:
- name: config
persistentVolumeClaim:
claimName: radarr-config-data

10
radarr/pvc.yaml Normal file
View File

@ -0,0 +1,10 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: radarr-config-data
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi