Codebase list ironic / fe3021f
Grenade: Turn up interfaces for vxlan So... We can't do this in a single patch, and we *actually* need to merge the vxlan fix before the subnode will ever pickup the configuration From the logs, I can observe the vxlan tunnel connects between the nodes. Awesome. Where things break is in the local setup of the local bridges used to wire everything together. setup_vxlan_network:3274 : sudo ovs-vsctl add-port sub1brbm phy-brbm-infra ovs-vsctl: Error detected while setting up 'phy-brbm-infra': could not open network device phy-brbm-infra (No such device). See ovs-vswitchd log for details. Basically, with the same change on a separate patch, we're able to observe the controller node work perfectly. It is the subnode connectivity which is just broken. So, activate the bridge interfaces seems ideal. This likely broke at some point due to behavior changes in OpenVSwitch. Change-Id: I11dbba1957d67187d859a1ef60563c0301da9812 Julia Kreger 2 years ago
1 changed file(s) with 4 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
32703270 }
32713271
32723272 function setup_vxlan_network {
3273 sudo ip link add phy-brbm-infra type bridge
3274 sudo ip link set dev phy-brbm-infra up
32733275 sudo ovs-vsctl add-port $IRONIC_VM_NETWORK_BRIDGE phy-brbm-infra
3276 sudo ip link add phy-infra-brbm type bridge
3277 sudo ip link set dev phy-infra-brbm up
32743278 sudo ovs-vsctl add-port $PUBLIC_BRIDGE phy-infra-brbm
32753279 sudo ovs-vsctl set interface phy-brbm-infra type=patch
32763280 sudo ovs-vsctl set interface phy-infra-brbm type=patch