This commit is contained in:
James Turland
2023-12-06 22:25:29 +00:00
parent 3c111a0668
commit 2f9621802e
4 changed files with 149 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
apiVersion: v1
kind: PersistentVolume
metadata:
annotations:
pv.kubernetes.io/provisioned-by: smb.csi.k8s.io
name: pv-jellyfin-smb
spec:
capacity:
storage: 100Gi
accessModes:
- ReadWriteMany
persistentVolumeReclaimPolicy: Retain
storageClassName: smb
mountOptions:
- dir_mode=0777
- file_mode=0777
csi:
driver: smb.csi.k8s.io
readOnly: false
# volumeHandle format: {smb-server-address}#{sub-dir-name}#{share-name}
# make sure this value is unique for every share in the cluster
volumeHandle: jellyfin
volumeAttributes:
source: "//192.168.6.2/FreeNAS" # Change this to your SMB IP and share name
nodeStageSecretRef:
name: smbcreds
namespace: default