【收藏】k8s使用如下配置给pod固定ip
https://www.kubernetes.org.cn/4289.htmlip固定– 使用如下配置给pod固定ipannotations:cni.projectcalico.org/ipAddrs: “[\”10.224.0.20\”]”– 模版文件apiVersion: v1kind: Podmetadata:name: myapp-podlabels:app: myappannotatio
·
https://www.kubernetes.org.cn/4289.html
ip固定
– 使用如下配置给pod固定ip
annotations:
cni.projectcalico.org/ipAddrs: “[\”10.224.0.20\”]”
– 模版文件
apiVersion: v1
kind: Pod
metadata:
name: myapp-pod
labels:
app: myapp
annotations:
cni.projectcalico.org/ipAddrs: "[\"10.224.0.20\"]"
spec:
containers:
- name: myapp-container
image: busybox
command: ['sh', '-c', 'echo Hello Kubernetes! && sleep 3600']
更多推荐
已为社区贡献20条内容
所有评论(0)