Linux從入門到放棄 k8s nfs 持久化

每個節點都需要安裝NFS
node節點安裝NFS客戶端
master節點安裝NFS服務端

yum install -y nfs-utils
[root@k8s-master tomcat]# vim /etc/exports

/wy 10.0.0.0/24(rw,async,no_root_squash,no_all_squash)
[root@k8s-master tomcat]# showmount -e 10.0.0.11
[root@k8s-master tomcat]# mkdir /wy
[root@k8s-master tomcat]# systemctl restart rpcbind.s
rpcbind.service  rpcbind.socket   
[root@k8s-master tomcat]# systemctl restart rpcbind.service 
[root@k8s-master tomcat]# systemctl enable rpcbind.service 
[root@k8s-master tomcat]# systemctl restart nfs
[root@k8s-master tomcat]# systemctl enable nfs
Created symlink from /etc/systemd/system/multi-user.target.wants/nfs-server.service to /usr/lib/systemd/system/nfs-server.service.
    spec:
      volumes:
        - name: mysql
          nfs:	# 添加nfs數據持久化
            path: /wy
            server: 10.0.0.11
      containers:
        - name: mysql
          image: 10.0.0.11:5000/mysql:5.7
          ports:
          - containerPort: 3306
          volumeMounts:	# 添加volumes目錄
          - name: mysql
            mountPath: /var/lib/mysql
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章