k8s 指定pod的ip
使用如下配置给pod固定ip。
·
8.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']
更多推荐
已为社区贡献19条内容
所有评论(0)