- Add SMB CSI driver ArgoCD application for mounting sifaka share - Add transmission deployment in torrent namespace with Tailscale ingress - Add kiwix deployment with torrent-sync sidecar for declarative ZIM management - Add zim-watcher CronJob to auto-restart kiwix when new ZIMs complete - Both services share SMB PV mounted from sifaka:/volume1/torrents Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
594 B
YAML
29 lines
594 B
YAML
---
|
|
apiVersion: v1
|
|
kind: PersistentVolume
|
|
metadata:
|
|
name: torrents-smb-pv
|
|
spec:
|
|
capacity:
|
|
storage: 1Ti
|
|
accessModes:
|
|
- ReadWriteMany
|
|
persistentVolumeReclaimPolicy: Retain
|
|
storageClassName: ""
|
|
mountOptions:
|
|
- dir_mode=0777
|
|
- file_mode=0777
|
|
- uid=1000
|
|
- gid=1000
|
|
- noperm
|
|
- mfsymlinks
|
|
- cache=strict
|
|
- noserverino # Required to prevent data corruption
|
|
csi:
|
|
driver: smb.csi.k8s.io
|
|
volumeHandle: torrents-smb-pv
|
|
volumeAttributes:
|
|
source: //sifaka/torrents
|
|
nodeStageSecretRef:
|
|
name: smbcreds
|
|
namespace: torrent
|