From ef926f397df56ddf941bd53ea4a6868a183a1c96 Mon Sep 17 00:00:00 2001 From: Martyn Date: Mon, 10 Aug 2026 00:52:52 +0200 Subject: [PATCH] And more ways to download --- apps-kustomized/lidarr/deploy.yaml | 10 +++++++++- apps-kustomized/lidarr/smb-pvc.yaml | 24 ++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/apps-kustomized/lidarr/deploy.yaml b/apps-kustomized/lidarr/deploy.yaml index 7313438..2e6e9f9 100644 --- a/apps-kustomized/lidarr/deploy.yaml +++ b/apps-kustomized/lidarr/deploy.yaml @@ -35,12 +35,20 @@ spec: mountPath: /data - name: downloads mountPath: /downloads + - name: torrents + mountPath: /torrents + - name: soulseek + mountPath: /slskd volumes: - name: config persistentVolumeClaim: claimName: lidarr-config-data - name: torrents - emptyDir: {} + persistentVolumeClaim: + claimName: smb-torrents + - name: soulseek + persistentVolumeClaim: + claimName: smb-soulseek - name: data persistentVolumeClaim: claimName: smb-music diff --git a/apps-kustomized/lidarr/smb-pvc.yaml b/apps-kustomized/lidarr/smb-pvc.yaml index 79f1e5c..033980f 100644 --- a/apps-kustomized/lidarr/smb-pvc.yaml +++ b/apps-kustomized/lidarr/smb-pvc.yaml @@ -21,3 +21,27 @@ spec: requests: storage: 1Gi storageClassName: smb-usenet +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: smb-torrents +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi + storageClassName: smb-torrents +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: smb-soulseek +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi + storageClassName: smb-soulseek