现象描述:添加deploy出现下面错误

failed to unmount target/data/rancher/k3s/agent/containerd/tmpmounts/containerd-mount927045004: device or resource busy: unknown

修改linux内核参数:fs.may_detach_mounts=1
修改方法 :
 

#方法1:修改内核参数
#临时修改
echo 1 > /proc/sys/fs/may_detach_mounts
或者
sysctl -w fs.may_detach_mounts=1
#永久修改
#查看所有内核参数
sysctl -a
sysctl -a |grep fs.file-max
#添加内核参数
cat >> /etc/sysctl.conf <<EOF
fs.may_detach_mounts=1
EOF
#重新加载配置
sysctl -p

然后重启集群

Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐