土小帽 发表于 2023-11-3 21:56:39

k8s hostNetwork涉及到dns问题

问题说明
如果在k8s部署相关微服务应用时,如果将hostNetwork: true

会出现Nameserver limits were exceeded, some nameservers have been omitted, the applied nameserver line is: 223.5.5.5 223.6.6.6

显然不影响使用,pod默认使用所在宿主主机使用的DNS,这样也会导致容器内不能通过service name 访问k8s集群中其他POD

请在yaml文件写入:

dnsPolicy: ClusterFirstWithHostNet
验证pod使用了coredns
kubectl exec pod_name -n namespace cat /etc/resolv.conf
更多参考:https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/
页: [1]
查看完整版本: k8s hostNetwork涉及到dns问题