Skip to content

Commit 8ee656a

Browse files
committed
NO-JIRA: Env override NETWORKING_E2E_BOND_MTU
This commit introduces NETWORKING_E2E_BOND_MTU variable. The test for creating "bond" interface can read it to override the default value. The default value is used when .status.clusterNetworkMTU is undefined on the Network source "cluster" and it is automatically set by kernel. The .status.clusterNetworkMTU might not be defined when using acustom CNI plugin such as Cilium.
1 parent 44873fa commit 8ee656a

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

test/extended/networking/bonds.go

+14-4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import (
44
"context"
55
"encoding/json"
66
"fmt"
7+
"os"
8+
"strconv"
79
"strings"
810

911
g "github.com/onsi/ginkgo/v2"
@@ -36,15 +38,23 @@ var _ = g.Describe("[sig-network][Feature:bond]", func() {
3638
)
3739
o.Expect(err).NotTo(o.HaveOccurred(), "unable to create macvlan network-attachment-definition")
3840

39-
networkConfig, err := oc.AdminConfigClient().ConfigV1().Networks().Get(context.Background(), "cluster", metav1.GetOptions{})
40-
o.Expect(err).NotTo(o.HaveOccurred(), "unable to get network config")
41+
var mtu int
42+
if mtuEnv := os.Getenv("NETWORKING_E2E_BOND_MTU"); mtuEnv != "" {
43+
mtu, err = strconv.Atoi(mtuEnv)
44+
o.Expect(err).NotTo(o.HaveOccurred())
45+
} else {
46+
networkConfig, err := oc.AdminConfigClient().ConfigV1().Networks().
47+
Get(context.Background(), "cluster", metav1.GetOptions{})
48+
o.Expect(err).NotTo(o.HaveOccurred(), "unable to get network config")
49+
mtu = networkConfig.Status.ClusterNetworkMTU
50+
}
4151

4252
err = createBondNAD(
4353
oc.AdminConfig(),
4454
namespace,
4555
bondnad1,
4656
"192.0.2.10/24",
47-
networkConfig.Status.ClusterNetworkMTU,
57+
mtu,
4858
"net1",
4959
"net2",
5060
)
@@ -55,7 +65,7 @@ var _ = g.Describe("[sig-network][Feature:bond]", func() {
5565
namespace,
5666
bondnad2,
5767
"192.0.2.11/24",
58-
networkConfig.Status.ClusterNetworkMTU,
68+
mtu,
5969
"net1",
6070
"net2",
6171
)

0 commit comments

Comments
 (0)