You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for automatic bridge selection in HW offload mode (#301)
If deviceID argument is passed it can be used for automatic
bridge selection: VF deviceID > PF > Bond(Optional) > Bridge
Signed-off-by: Yury Kulazhenkov <[email protected]>
Copy file name to clipboardexpand all lines: docs/cni-plugin.md
+7-1
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,8 @@ Another example with a port which has an interface of type system:
50
50
51
51
*`name` (string, required): the name of the network.
52
52
*`type` (string, required): "ovs".
53
-
*`bridge` (string, required): name of the bridge to use.
53
+
*`bridge` (string, optional): name of the bridge to use, can be omitted if `ovnPort` is set in CNI_ARGS, or if `deviceID` is set
54
+
*`deviceID` (string, optional): PCI address of a Virtual Function in valid sysfs format to use in HW offloading mode. This value is usually set by Multus.
54
55
*`vlan` (integer, optional): VLAN ID of attached port. Trunk port if not
55
56
specified.
56
57
*`mtu` (integer, optional): MTU.
@@ -61,6 +62,11 @@ Another example with a port which has an interface of type system:
_*Note:* if `deviceID` is provided, then it is possible to omit `bridge` argument. Bridge will be automatically selected by the CNI plugin by following
67
+
the chain: Virtual Function PCI address (provided in `deviceID` argument) > Physical Function > Bond interface
68
+
(optional, if Physical Function is part of a bond interface) > ovs bridge_
returnnil, fmt.Errorf("failed to get link info for uplink %s: %v", pfName, err)
82
+
}
83
+
bond, err:=getBondInterface(pfLink)
84
+
iferr!=nil {
85
+
returnnil, fmt.Errorf("failed to get parent link for uplink %s: %v", pfName, err)
86
+
}
87
+
ifbond==nil {
88
+
// PF has no parent bond, return only PF name
89
+
return []string{pfLink.Attrs().Name}, nil
90
+
}
91
+
// for some OVS datapathes, to use bond configuration it is required to attach primary PF (usually first one) to the ovs instead of the bond interface.
92
+
// Example:
93
+
// - Bond interface bond0 (contains PF0 + PF1)
94
+
// - OVS bridge br0 (only PF0 is attached)
95
+
// - VF representors from PF0 and PF1 can be attached to OVS bridge br0, traffic will be offloaded and sent through bond0
96
+
//
97
+
// to support autobridge selection for VFs from the PF1 (which is part of the bond, but not directly attached to the ovs),
98
+
// we need to add other interfaces that are part of the bond as candidates, for PF1 candidates list will be: [bond0, PF0, PF1]
99
+
bondMembers, err:=getBondMembers(bond)
100
+
iferr!=nil {
101
+
returnnil, fmt.Errorf("failed to retrieve list of bond members for bond %s, uplink %s: %v", bond.Attrs().Name, pfName, err)
102
+
}
103
+
returnbondMembers, nil
104
+
}
105
+
106
+
// getBondInterface returns a parent bond interface for the link if it exists
0 commit comments