From 4dc105c2fd5f775d673a181159386dd257887383 Mon Sep 17 00:00:00 2001 From: Martyn Date: Wed, 26 Nov 2025 16:34:30 +0100 Subject: [PATCH] Enable sshfs for sokloud --- apps-kustomized/radarr/deploy.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/apps-kustomized/radarr/deploy.yaml b/apps-kustomized/radarr/deploy.yaml index b081a0d..57a5859 100644 --- a/apps-kustomized/radarr/deploy.yaml +++ b/apps-kustomized/radarr/deploy.yaml @@ -29,6 +29,11 @@ spec: requests: cpu: 25m memory: 920733364 + securityContext: + privileged: true + capabilities: + add: + - SYS_ADMIN volumeMounts: - mountPath: /config name: config @@ -36,6 +41,8 @@ spec: name: data - mountPath: /films name: films + - mountPath: /dev/fuse + name: fusedev volumes: - name: config persistentVolumeClaim: @@ -46,3 +53,6 @@ spec: - name: data persistentVolumeClaim: claimName: smb-usenet + - name: fusedev + hostPath: + path: /dev/fuse