@@ -27,6 +27,7 @@ import (
27
27
)
28
28
29
29
func getManagedBridges () map [string ]* sriovnetworkv1.OVSConfigExt {
30
+ mtu := 5000
30
31
return map [string ]* sriovnetworkv1.OVSConfigExt {
31
32
"br-0000_d8_00.0" : {
32
33
Name : "br-0000_d8_00.0" ,
@@ -43,6 +44,7 @@ func getManagedBridges() map[string]*sriovnetworkv1.OVSConfigExt {
43
44
ExternalIDs : map [string ]string {"iface_externalID_key" : "iface_externalID_value" },
44
45
OtherConfig : map [string ]string {"iface_otherConfig_key" : "iface_otherConfig_value" },
45
46
Options : map [string ]string {"iface_options_key" : "iface_options_value" },
47
+ MTURequest : & mtu ,
46
48
},
47
49
}},
48
50
},
@@ -83,13 +85,15 @@ func (t *testDBEntries) GetCreateOperations(c client.Client) []ovsdb.Operation {
83
85
}
84
86
85
87
func getDefaultInitialDBContent () * testDBEntries {
88
+ mtu := 5000
86
89
iface := & InterfaceEntry {
87
90
Name : "enp216s0f0np0" ,
88
91
UUID : uuid .NewString (),
89
92
Type : "dpdk" ,
90
93
ExternalIDs : map [string ]string {"iface_externalID_key" : "iface_externalID_value" },
91
94
OtherConfig : map [string ]string {"iface_otherConfig_key" : "iface_otherConfig_value" },
92
95
Options : map [string ]string {"iface_options_key" : "iface_options_value" },
96
+ MTURequest : & mtu ,
93
97
}
94
98
port := & PortEntry {
95
99
Name : "enp216s0f0np0" ,
@@ -156,6 +160,7 @@ func validateDBConfig(dbContent *testDBEntries, conf *sriovnetworkv1.OVSConfigEx
156
160
Expect (iface .Type ).To (Equal (conf .Uplinks [0 ].Interface .Type ))
157
161
Expect (iface .OtherConfig ).To (Equal (conf .Uplinks [0 ].Interface .OtherConfig ))
158
162
Expect (iface .ExternalIDs ).To (Equal (conf .Uplinks [0 ].Interface .ExternalIDs ))
163
+ Expect (iface .MTURequest ).To (Equal (conf .Uplinks [0 ].Interface .MTURequest ))
159
164
}
160
165
161
166
var _ = Describe ("OVS" , func () {
@@ -457,6 +462,7 @@ var _ = Describe("OVS", func() {
457
462
initialDBContent := getDefaultInitialDBContent ()
458
463
initialDBContent .Bridge [0 ].ExternalIDs = nil
459
464
initialDBContent .Bridge [0 ].OtherConfig = nil
465
+ initialDBContent .Interface [0 ].MTURequest = nil
460
466
createInitialDBContent (ctx , ovsClient , initialDBContent )
461
467
conf := getManagedBridges ()
462
468
store .EXPECT ().GetManagedOVSBridges ().Return (conf , nil )
@@ -465,6 +471,7 @@ var _ = Describe("OVS", func() {
465
471
Expect (ret ).To (HaveLen (1 ))
466
472
Expect (ret [0 ].Bridge .ExternalIDs ).To (BeEmpty ())
467
473
Expect (ret [0 ].Bridge .OtherConfig ).To (BeEmpty ())
474
+ Expect (ret [0 ].Uplinks [0 ].Interface .MTURequest ).To (BeNil ())
468
475
})
469
476
})
470
477
Context ("RemoveOVSBridge" , func () {
0 commit comments