跳到主要内容

使用HostAliases向Pod /etc/hosts 文件添加条目

当 DNS 配置以及其它选项不合理的时候,通过向 Pod 的 /etc/hosts 文件中添加条目,可以在 Pod 级别覆盖对主机名的解析。在 1.7 版本,用户可以通过 PodSpec 的 HostAliases 字段来添加这些自定义的条目。

建议通过使用 HostAliases 来进行修改,因为该文件由 Kubelet 管理,并且可以在 Pod 创建/重启过程中被重写。

通过 HostAliases 增加额外的条目 除了默认的样板内容,我们可以向 hosts 文件添加额外的条目,将foo.local、bar.local解析为127.0.0.1,将foo.remote、bar.remote解析为10.1.2.3,我们可以在.spec.hostAliases下为 Pod 添加 HostAliases。

apiVersion: v1
kind: Pod
metadata:
name: hostaliases-pod
spec:
hostAliases:

- ip: "127.0.0.1"
hostnames:
- "foo.local"
- "bar.local"
- ip: "10.1.2.3"
hostnames:
- "foo.remote"
- "bar.remote"
containers:
- name: cat-hosts
image: busybox
command:
- cat
args:
- "/etc/hosts"

hosts 文件的内容看起来类似如下这样:

$ kubectl logs hostaliases-pod

Kubernetes-managed hosts file.

127.0.0.1	localhost
::1 localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
fe00::0 ip6-mcastprefix
fe00::1 ip6-allnodes
fe00::2 ip6-allrouters
10.200.0.4 hostaliases-pod
127.0.0.1 foo.local
127.0.0.1 bar.local
10.1.2.3 foo.remote
10.1.2.3 bar.remote

在 1.7 版本,如果 Pod 启用 hostNetwork,那么将不能使用这个特性,因为 kubelet 只管理非 hostNetwork 类型 Pod 的 hosts 文件。后面的可能要改变这个情况