k8s_notes-wiki/notes-wiki_pv.yml

22 lines
340 B
YAML
Raw Permalink Normal View History

2021-08-01 21:15:14 -04:00
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: notes-wiki-pv
labels:
name: notes-wiki-pv
spec:
storageClassName: manual
capacity:
storage: 1Gi
accessModes:
- ReadWriteOnce
mountOptions:
- hard
- nfsvers=4.0
nfs:
2022-11-19 07:58:26 -05:00
server: 192.168.20.11
2021-08-01 21:15:14 -04:00
path: "/volume1/k8s-storage/wikis/notes-wiki"
# EOF