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