-
Notifications
You must be signed in to change notification settings - Fork 36
选择主机网卡
Huanyu He edited this page Jun 8, 2022
·
2 revisions
默认情况下,在主机存在多张网卡时,hybridnet 会自动选择主机默认路由对应的网卡作为容器网络通信使用的网卡
同时 hybridnet 也支持自定义选择 VXLAN/VLAN/BGP 容器网络使用的宿主机网卡,参数为网卡名数组字符串
helm install hybridnet hybridnet/hybridnet -n kube-system \
--set daemon.preferVlanInterfaces='eth1\,ens22' \
--set daemon.preferVxlanInterfaces='eth0\,ens23' \
--set daemon.preferVxlanInterfaces='eth0\,ens23'
hybridnet 会选择每个宿主机上列表从左到右第一个存在的网卡作为对应 VXLAN/VLAN/BGP 容器网络使用的宿主机网卡
主机网卡需要在安装的时候配置,如果在安装完之后增量修改主机网卡配置,可能需要重启主机
由于 Linux 内核限制了虚拟网卡名称不能超过 15 个字符,所以对于默认的 vxlan 配置(会创建一个带有“.vxlan4”后缀的 vxlan 设备),对应的主机网卡名称不能超过 8 个字符