项目管理k8s集群用的是rancher,可是rancher没有提供给deployment批量添加hosts的图形化界面,所以还是只能按照k8s官方的方法修改yaml文件。
使用 HostAliases 向 Pod /etc/hosts 文件添加条目
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"
本脚本仍需要一定的手动操作
import pandas as pd
import ruamel.yaml
data = pd.read_csv(r"hosts.csv")
ip = data.loc[:, "ip"].tolist()
hosts = data.loc[:, "hosts"].tolist()
res = {
"hostAliases": []
}
for i in range(len(ip)):
res_side = {
"ip": ip[i],
"hostnames": [hosts[i]]
}
res['hostAliases'].append(res_side)
with open('hosts.yaml', 'w') as f:
yaml = ruamel.yaml.YAML()
yaml.default_style = "\""
yaml.dump(res, f)
f.close()
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有