gpt4 book ai didi

docker - 如何将自定义主机条目添加到 kubernetes Pods?

转载 作者:行者123 更新时间:2023-12-04 19:45:36 28 4
gpt4 key购买 nike

我的应用程序通过主机名与某些服务通信。
将我的应用程序作为 docker 容器运行时,我曾经将主机名添加到主机的/etc/hosts 并使用 --net=host 运行容器.

现在我在 kubernetes 集群中运行我的容器。我想知道如何通过 yaml 将/etc/hosts 条目添加到 pod 中.

我正在使用 kubernetes v1.5.3。

最佳答案

从 k8s 1.7 开始,您可以添加 hostAliases . Example from the docs :

apiVersion: v1
kind: Pod
metadata:
name: hostaliases-pod
spec:
restartPolicy: Never
hostAliases:
- ip: "127.0.0.1"
hostnames:
- "foo.local"
- "bar.local"
- ip: "10.1.2.3"
hostnames:
- "foo.remote"
- "bar.remote"

关于docker - 如何将自定义主机条目添加到 kubernetes Pods?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43384572/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com