gpt4 book ai didi

kubernetes - 如何在 Helm chart 中添加额外的主机条目

转载 作者:行者123 更新时间:2023-12-02 11:31:53 25 4
gpt4 key购买 nike

所以我在 kubernetes sing helm charts 上部署我的应用程序堆栈,现在我需要在我的 pods/etc/hosts 文件中添加一些依赖服务器的 ip 和主机名,所以在这种情况下需要帮助

最佳答案

作为站在文档中,您可以使用 host aliases 向 POD 添加额外的主机。特征

来自文档的示例:

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"
containers:
- name: cat-hosts
image: busybox
command:
- cat
args:
- "/etc/hosts"

关于kubernetes - 如何在 Helm chart 中添加额外的主机条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56390226/

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