k8s pod内无法通过域名访问service 排查问题定位

k8s pod内无法通过域名访问service
在pod内 无法通过service名:端口去访问
curl http://service:32001 不通
通过kubectl get svc -A 找到对应的svc的IP
再次去curl,但是这次通过上面的IP:Port去curl ,这次通了

通过nslookup serviceName.namespace.svc.cluster.local coreDNSIP 去看返回的ip是不是你刚才查到的ip。这个时候如果不一致了,那么可能是kube-proxy的问题了。

那么kube-proxy的为什么会出现问题呢?

你可能感兴趣的:(kubernetes,linux)