@@ -34,13 +34,9 @@ const (
3434 pollingInterval = 50 * time .Millisecond
3535 eventuallyTimeout = 3 * time .Second
3636 consistentlyDuration = 1 * time .Second
37- unknownMachineMACAddress = "11:11:11:11:11:11"
3837 linkLocalIPV6Prefix = "fe80::"
39- subnetLabel = "subnet=dhcp"
4038 machineWithIPAddressMACAddress = "11:22:33:44:55:66"
41- machineWithWrongMACAddress = "11:22:33:44"
4239 machineWithMacAddress = "11:22:33:44:55:77"
43- privateIPV4Address = "192.168.47.11"
4440 ipamConfigFile = "config.yaml"
4541)
4642
@@ -75,7 +71,7 @@ var _ = BeforeSuite(func() {
7571 // Note that you must have the required binaries setup under the bin directory to perform
7672 // the tests directly. When we run make test it will be setup and used automatically.
7773 BinaryAssetsDirectory : filepath .Join (".." , ".." , "bin" , "k8s" ,
78- fmt .Sprintf ("1.30 .0-%s-%s" , runtime .GOOS , runtime .GOARCH )),
74+ fmt .Sprintf ("1.32 .0-%s-%s" , runtime .GOOS , runtime .GOARCH )),
7975 }
8076
8177 var err error
@@ -134,6 +130,7 @@ func SetupTest() *corev1.Namespace {
134130 Expect (err ).NotTo (HaveOccurred ())
135131 Expect (config .Namespace ).To (Equal (ns .Name ))
136132 Expect (config .Subnets [0 ]).To (Equal ("ipam-subnet1" ))
133+ Expect (config .Subnets [1 ]).To (Equal ("ipam-subnet2" ))
137134 })
138135
139136 return ns
0 commit comments