我在CentOS 8上部署了一个带有3个节点的RKE集群。
安装是成功的,但发现pod无法解析外部URL,因为无法访问ClusterIP of CoreDNS。
只有吊舱到吊舱之间的通讯才能工作。
我检查了每个集群IP条目的iptables规则,并且它们存在。
造成这个问题的根本原因是什么?有什么暗示吗?
发布于 2021-12-28 03:29:38
更改配置文件: /etc/sysctl.conf
net.bridge.bridge-nf-call-ip6tables = 1
net.bridge.bridge-nf-call-iptables = 1
net.bridge.bridge-nf-call-arptables = 1来源:https://github.com/coredns/coredns/issues/1879#issuecomment-398679334
https://stackoverflow.com/questions/70502211
复制相似问题