Files
argocd-apps/apps/base/arrstack/pvc-mediafs.yaml
T
unkin-agent fddf4e37a3
ci/woodpecker/pr/vector-test Pipeline was successful
ci/woodpecker/pr/pre-commit Pipeline was successful
ci/woodpecker/pr/kubeconform Pipeline was successful
arrstack: mount legacy mediafs CephFS via static PV/PVC
Exposes the legacy mediafs filesystem to the arrstack namespace for the
upcoming mediamover tool. Adds a ceph-mediafs-secret VaultStaticSecret in
csi-cephfs and a 10Ti static RWX PV/PVC pair bound by claimRef.
2026-08-22 22:49:37 +10:00

21 lines
521 B
YAML

---
# Legacy mediafs filesystem root, statically bound to the arrstack-mediafs PV
# for the upcoming mediamover tool. storageClassName "" + volumeName disables
# dynamic provisioning and binds the pre-created static PV.
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: mediafs
namespace: arrstack
annotations:
k8up.io/backup: "false"
spec:
accessModes:
- ReadWriteMany
resources:
requests:
storage: 10Ti
storageClassName: ""
volumeName: arrstack-mediafs
volumeMode: Filesystem