Kubernetes - NodeLocal DNSCache

2022-05-17

使用NodeLocal DNSCache前,您需要对CoreDNS配置进行修改,否则可能导致集群外部域名解析异常。具体操作,请参见配置Forward插件与上游VPC DNS服务器的默认协议

kubectl -n kube-system get cm coredns
#修改前
forward . /etc/resolv.conf
#修改后
forward . /etc/resolv.conf {
  prefer_udp
}

namespace维度的自动注册

kubectl label namespace ${namespace} node-local-dns-injection=enabled

参考文档:https://help.aliyun.com/document_detail/205713.html


标题:Kubernetes - NodeLocal DNSCache
地址:https://blog.njqhome.com:8443/articles/2022/05/17/1652765751598.html