K3d pod 的 DNS 问题

发布于 2025-01-09 17:08:39 字数 147 浏览 1 评论 0原文

使用 k3d,当 pod 尝试通过互联网访问 URL 时,我收到 DNS 错误。

ERROR:
getaddrinfo EAI_AGAIN DNS could not be resolved

我怎样才能克服这个错误?

With k3d, I am receiving a DNS error when the pod tries to access a URL over the internet.

ERROR:
getaddrinfo EAI_AGAIN DNS could not be resolved

How can I get past this error?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

慕巷 2025-01-16 17:08:39

这取决于您的环境、操作系统、版本。

例如,您将在 k3d-io/k3d issues 209

这可能与 k3d 创建 docker 网络的方式有关。

事实上,k3d 为每个集群创建一个自定义 docker 网络,当发生这种情况时,通过 docker 守护进程完成解析。
请求实际上会转发到主机 resolv.conf 中配置的 DNS 服务器。而是通过单个DNS服务器(docker的嵌入式)。

这意味着,如果您的 daemon.json 与我的一样,未配置为提供额外的 DNS 服务器,则它默认为 8.8.8.8,例如,它不会解析任何公司地址。

在 k3d 启动集群并指定 DNS 服务器时提供自定义选项会很有用

这就是为什么有“v3/networking: --network 标志附加到现有网络",参考 网络

在新标志之前:

对于遇到问题的人,一个简单的解决方法是将您的 /etc/resolve.conf 挂载到集群上:

k3d cluster create --volume /etc/resolv.conf:/etc/resolv.conf

It depends on your context, OS, version.

For instance, you will see various proxy issue in k3d-io/k3d issue 209

this could be related to the way k3d creates the docker network.

Indeed, k3d creates a custom docker network for each cluster and when this happens resolving is done through the docker daemon.
The requests are actually forwarded to the DNS servers configured in your host's resolv.conf. But through a single DNS server (the embedded one of docker).

This means that if your daemon.json is, like mine, not configured to provide extra DNS servers it defaults to 8.8.8.8 which does not resolve any company address for example.

It would be useful to have a custom options to provide to k3d when it starts the cluster and specify the DNS servers there

Which is why there is "v3/networking: --network flag to attach to existing networks", referring to Networking.

Before that new flag:

For those who have the problem, a simple fix is to mount your /etc/resolve.conf onto the cluster:

k3d cluster create --volume /etc/resolv.conf:/etc/resolv.conf
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文