我正在尝试覆盖基于阿尔卑斯山的Pod的dnsconfig(尤其是searchdomain)。
但似乎dnsconfig在pod对象中可用。
无论如何,有没有在部署对象中提供dnsconfig或任何其他替代方法来覆盖该特定pod的searchdomain。
最佳答案
您可以在dnsConfig
对象中指定 spec.template
。
基本上,这是Deployment
的模板,将用于创建pod。
部署可能如下所示:
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
labels:
app: nginx
spec:
replicas: 3
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:1.17
ports:
- containerPort: 80
dnsPolicy: "None"
dnsConfig:
nameservers:
- 1.2.3.4
searches:
- test.test.com
- test.test.org
关于docker - 如何在Kubernetes部署类型中覆盖dnsconfig,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56559257/