基于k8s hostPath nfs的宿主机文件挂载实现
更改k8s挂载配置spec:containers:......volumeMounts:- name: file-service-mount# 名称*mountPath: /root/fileservice#docker容易内存储路径volumes:- name: file-service-mount# 名称* 与上面摇一致hostPath:path:
·
更改k8s挂载配置
spec:
containers:
......
volumeMounts:
- name: file-service-mount # 名称*
mountPath: /root/fileservice # docker容易内存储路径
volumes:
- name: file-service-mount # 名称* 与上面摇一致
hostPath:
path: /root/fileservice # 宿主机文件存储路径
文件所在服务器设置共享文件夹,其他应用服务器挂载该文件夹
当前文件所在服务器:10.10.10.10 文件夹为 /root/fileservice
其他worker节点:10.10.10.11 、 10.10.10.12 文件夹为 /root/fileservice (这里选两台做举例,实际根据worker节点数量来自定义配置)
安装:centos自带nfs,如需安装:yum -y install nfs-utils rpcbind
启动:默认已启动,如需启动:service rpcbind start 、service nfs start
1.在10.10.10.10设置共享目录,把该目录开放给10.10.10.11 、 10.10.10.12,编辑 /etc/exports,增加两行
/root/fileservice/ 10.10.10.11(rw,no_root_squash,no_all_squash,sync)
/root/fileservice/ 10.10.10.11(rw,no_root_squash,no_all_squash,sync)
2.使配置生效
exportfs -r
3.查看已共享的目录
本机:showmount -e
其他:showmount -e IP
4.在10.10.10.11 、10.10.10.12 挂载共享文件夹
mount -t nfs 10.10.10.10:/root/fileservice /root/fileservice
如果当前没有/root/fileservice文件夹,需自主创建mkdir
5.重启服务
更多推荐
已为社区贡献1条内容
所有评论(0)