1 - आपको अपना एनएफएस सर्वर स्थापित करने की आवश्यकता है:इस लिंक में दिए गए निर्देशों का पालन करें:
https://vitux.com/install-nfs-server-and-client-on-ubuntu/
2- अपना साझा फ़ोल्डर बनाएं जहां आप अपना डेटा जारी रखना चाहते हैं<
mount 192.168.56.2:/mnt/sharedfolder /mnt/shared/folder_client
3- PV.yaml में निम्नलिखित निर्देशों को बदलें:
apiVersion: v1
kind: PersistentVolume
metadata:
name: redis-pv
labels:
type: nfs
spec:
capacity:
storage: 100Mi
volumeMode: Filesystem
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
storageClassName: slow
mountOptions:
- hard
- nfsvers=4.1
nfs:
path: /mnt/sharedfolder
server: 192.168.56.2 #ip of my master-node