Docker的hosts文件是容器启动后动态加载的,所以无法在Dockerfile中设置,正常将可以通过配置公司的dns服务器访问集群外部域名解析,还有以下方法可参考:
可以为 coredns 配置 hosts 来实现为 kubernetes 集群添加全局的自定义域名解析,适用于整个集群内都需要配置域名解析,但是需要重启coredns服务
编辑 coredns 配置:
kubectl -n kube-system edit configmap coredns
加入 hosts:
hosts { 10.10.10.10 harbor.example.com 10.10.10.11 grafana.example.com fallthrough }
通过dockerfile文件指定CMD启动脚本方式,只有root可以直接这么修改,如果USER app会报无权限。
start.sh
echo "1.1.1.1 xx.xx.xxxx" >> /etc/hosts
java -jar /xxx/xxx.jar
Dockerfile
CMD ["sh","-c","/xxx/start.sh"]
如果有部分 Pod 对特定的域名解析有依赖,在不希望配置 dns 解析的情况下,可以使用 K8S 提供的 hostAliases
来为部分工作负载添加 hosts:
配置位置在deployment.spec.spec下面,和containers同级
spec:
hostAliases: # 这下面定义 hosts
- ip: "10.10.10.10"
hostnames:
- "mysql.example.com"
containers:
- name: nginx
image: nginx:latest