-
Notifications
You must be signed in to change notification settings - Fork 445
Pod 绑定 Subnet
oilbeater edited this page Jun 27, 2022
·
3 revisions
Wiki 下的中文文档将不在维护,请访问我们最新的中文文档网站,获取最新的文档更新。
默认情况下,Pod 会自动继承 Namespace 所属子网,用户不需要主动进行配置。如果用户需要手动指定 Pod 属于另一个和当前 Namespace 所属子网不同的子网,则需要手动修改 logical_switch
注解。本功能从 v1.5.1 后开始支持。
示例如下:
apiVersion: v1
kind: Pod
metadata:
name: another-subnet-pod
namespace: default
annotations:
ovn.kubernetes.io/logical_switch: another-subnet
spec:
containers:
- name: web
image: nginx
ports:
- name: web
containerPort: 80
protocol: TCP