1
0
Files
simplefilehub/k8s/pv.yml
T
br0kenpixel 81c32eba71
Build and Push Docker Image / build-and-push (push) Has been cancelled
add kubernetes configs
2026-05-11 11:33:58 +02:00

14 lines
241 B
YAML

apiVersion: v1
kind: PersistentVolume
metadata:
name: simplefilehub-storage-volume
labels:
type: local
spec:
storageClassName: manual
capacity:
storage: 1Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/mnt/data"