-
Notifications
You must be signed in to change notification settings - Fork 36
VXLAN 网络
Huanyu He edited this page Jun 7, 2022
·
6 revisions
通过创建如下 Network 对象可以生成一个 VXLAN 容器网络
apiVersion: networking.alibaba.com/v1
kind: Network
metadata:
name: network1
spec:
netID: 4 # Required.
# For Overlay type, netID refers to the tunnel id which used by vxlan
type: Overlay # 需要是 Overlay
mode: VXLAN # 可选,Overlay type Network 的 mode 不填默认也是 VXLAN
通过 一键安装 会自动创建 Overlay 的 Network 和 Subnet
VXLAN 是目前 hybridnet 唯一支持的隧道协议。hybridnet 通过 VXLAN 构建了一个大二层的 Overlay 网络,不会为每个节点划分子网段,保证了最大程度的 IP 分配灵活性和扩展性
整个 Overlay 网络数据平面与 hybridnet 控制逻辑解藕,也就是说,就算 hybridnet 组件的 Pod 全部被删除也不影响存量的 Overlay Pod 的网络通信