From 6e0f980baba3bdc4949c0d26ff929c2ee3695355 Mon Sep 17 00:00:00 2001 From: Edward Cheng Date: Mon, 24 Jun 2024 09:42:12 +1000 Subject: [PATCH] fix config volume --- kubernetes/apps/qbittorrent/app/volume.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 kubernetes/apps/qbittorrent/app/volume.yaml diff --git a/kubernetes/apps/qbittorrent/app/volume.yaml b/kubernetes/apps/qbittorrent/app/volume.yaml new file mode 100644 index 0000000..fbb7be4 --- /dev/null +++ b/kubernetes/apps/qbittorrent/app/volume.yaml @@ -0,0 +1,16 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: qbittorrent-config + namespace: qbittorrent + labels: + type: local +spec: + volumeMode: Filesystem + capacity: + storage: 250Mi + accessModes: + - ReadWriteOnce + persistentVolumeReclaimPolicy: Retain + local: + path: "/mnt/nfs/AppData/qbittorrent/config" \ No newline at end of file