blumeops/argocd/manifests/torrent/pv.yaml
Erich Blume a0401cc979 Switch from SMB CSI to hostPath for torrents volume
SMB CSI driver doesn't work with minikube podman driver due to
kernel-level mount restrictions. Use hostPath instead since the
SMB share is already mounted on indri at /Volumes/torrents.

- Remove SMB PV and secret template
- Add hostPath PVs for torrent and kiwix namespaces
- Both PVs point to same /Volumes/torrents directory

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 20:18:15 -08:00

15 lines
265 B
YAML

---
apiVersion: v1
kind: PersistentVolume
metadata:
name: torrents-pv
spec:
capacity:
storage: 1Ti
accessModes:
- ReadWriteMany
persistentVolumeReclaimPolicy: Retain
storageClassName: ""
hostPath:
path: /Volumes/torrents
type: Directory