k3s-cluster/cluster/apps/default/gitea/gitea-pv.yaml

16 lines
325 B
YAML
Raw Normal View History

2023-06-04 05:10:47 +00:00
apiVersion: v1
kind: PersistentVolume
metadata:
name: gitea-pv
namespace: default
labels:
app.kubernetes.io/name: gitea-pv
spec:
storageClassName: hostpath
persistentVolumeReclaimPolicy: Retain
capacity:
storage: 30Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/mnt/MainPool/Kubernetes/gitea"