Data is slightly needed
Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
This commit is contained in:
parent
9a946b0d9f
commit
fd082ea85b
|
@ -22,3 +22,11 @@ spec:
|
||||||
- name: http
|
- name: http
|
||||||
containerPort: 7878
|
containerPort: 7878
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
volumeMounts:
|
||||||
|
- name: config
|
||||||
|
mountPath: /config
|
||||||
|
volumes:
|
||||||
|
- name: config
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: radarr-config-data
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: radarr-config-data
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteOnce
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 1Gi
|
Loading…
Reference in New Issue