为什么安装k8s需要关闭selinux
为什么使用kubeadm安装k8s需要关闭selinux
在使用kubeadm安装k8s集群的时候,准备工作里有一项要求关闭selinux,说是如果不关闭会导致k8s安装失败。但是都没有提到为什么会失败。
# 关闭Selinux
setenforce 0
sed -i "s/SELINUX=enforcing/SELINUX=disabled/g" /etc/selinux/config
希望大神门能给个解释
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
参考官方文档:https://kubernetes.io/docs/se...
Setting SELinux in permissive mode by running
setenforce 0
andsed ...
effectively disables it. This is required to allow containers to access the host filesystem, which is needed by pod networks for example. You have to do this until SELinux support is improved in the kubelet.