summaryrefslogtreecommitdiff
path: root/f3s/registry/helm-chart/templates/pv.yaml
blob: fb747ca0de60574ceab963bcf0fd7e063a36094c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
apiVersion: v1
kind: PersistentVolume
metadata:
  name: docker-registry-pv
spec:
  capacity:
    storage: 5Gi
  volumeMode: Filesystem
  accessModes:
    - ReadWriteOnce
  persistentVolumeReclaimPolicy: Retain
  hostPath:
    path: /data/nfs/k3svolumes/registry
    type: Directory