美文网首页
kubernetes nodePort不可访问问题

kubernetes nodePort不可访问问题

作者: 带马界的神秘人 | 来源:发表于2017-12-03 23:26 被阅读0次

    通常由于iptables问题和selinux问题
    解决方式

    setenforce 0
    iptables --flush
    iptables -tnat --flush
    service docker restart
    iptables -P FORWARD ACCEPT
    

    官方原文:
    Disabling SELinux by running setenforce 0 is required to allow containers to access the host filesystem, which is required by pod networks for example. You have to do this until SELinux support is improved in the kubelet.
    翻译就是
    通过setenforce 0 关闭SELinux是必须的,这样容器才可以访问主机的文件系统,例如pod的网络操作就需要访问主机文件系统。直到kubelet支持SELinux之前你都需要关闭SELinux。

    iptables --flushiptables -tnat --flush是清空iptables的规则,然后重启docker后会重新加入kubernetes的iptables规则,iptables -P FORWARD ACCEPT则允许转发

    相关文章

      网友评论

          本文标题:kubernetes nodePort不可访问问题

          本文链接:https://www.haomeiwen.com/subject/hnzzbxtx.html