-
Notifications
You must be signed in to change notification settings - Fork 451
Pod 固定 IP 和 Mac
oilbeater edited this page Jun 27, 2022
·
3 revisions
Wiki 下的中文文档将不在维护,请访问我们最新的中文文档网站,获取最新的文档更新。
Kube-OVN 默认会根据 Pod 所在 Namespace 所属的子网中分配 IP 和 Mac。如果用户需要指定 IP/Mac 可以在创建 Pod 时通过 annotation 来定义所需的 IP/Mac。
apiVersion: v1
kind: Pod
metadata:
name: static-ip
namespace: ls1
annotations:
ovn.kubernetes.io/ip_address: 10.16.0.15
ovn.kubernetes.io/mac_address: 00:00:00:53:6B:B6
spec:
containers:
- name: static-ip
image: nginx:alpine
在使用 annotation 定义 Pod IP/Mac 时需要注意以下几点:
- 所使用的 IP/Mac 不能和已有的 IP/Mac 冲突
- IP 必须在所属子网的 CIDR 内
- 可以只指定 IP 或 Mac