Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # v1 PersistentVolume ## yml <code> apiVersion: v1 kind: PersistentVolume metadata: name: nfs-pv spec: capacity: storage: 100Mi accessModes: - ReadWriteMany persistentVolumeReclaimPolicy: Retain nfs: server: 192.168.1.10 path: /nfs_shared </code> - [[accessModes]] - [[ReadWriteMany]] : 여러개의 노드가 읽고 쓸 수 있도록 마운트 - [[ReadWriteOnce]] : 하나의 노드에서만 볼륨을 읽고 쓸 수 있게 마운트 - [[ReadOnlyMany]] : 여러 개의 노드가 읽도록 마운트 - [[persistentVolumeReclaimPolicy]] - [[PV]]가 제거됐을 때 작동하는 방법을 정의 - [[Retain]] : 유지 - [[Delete]] : 삭제 - [[Recycle]] : 재활용 (Deprecated) open/v1-persistentvolume.txt Last modified: 2024/10/05 06:15by 127.0.0.1