@@ -13,6 +13,7 @@ import (
13
13
"time"
14
14
15
15
corev1 "k8s.io/api/core/v1"
16
+ metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
16
17
clientset "k8s.io/client-go/kubernetes"
17
18
e2enode "k8s.io/kubernetes/test/e2e/framework/node"
18
19
e2epodoutput "k8s.io/kubernetes/test/e2e/framework/pod/output"
@@ -21,6 +22,7 @@ import (
21
22
"github.com/onsi/gomega"
22
23
23
24
apiv1 "github.com/kubeovn/kube-ovn/pkg/apis/kubeovn/v1"
25
+ "github.com/kubeovn/kube-ovn/pkg/request"
24
26
"github.com/kubeovn/kube-ovn/pkg/util"
25
27
"github.com/kubeovn/kube-ovn/test/e2e/framework"
26
28
"github.com/kubeovn/kube-ovn/test/e2e/framework/docker"
@@ -289,6 +291,73 @@ var _ = framework.Describe("[group:subnet]", func() {
289
291
}
290
292
})
291
293
294
+ framework .ConformanceIt (`should be able to configure pod routes by subnet's ".spec.routes" field` , func () {
295
+ subnet = framework .MakeSubnet (subnetName , "" , cidr , "" , "" , "" , nil , nil , nil )
296
+ ginkgo .By ("Creating subnet " + subnetName + " with cidr " + subnet .Spec .CIDRBlock )
297
+ subnet = subnetClient .CreateSync (subnet )
298
+
299
+ ginkgo .By (`Constructing specified routes by subnet's ".spec.routes" field` )
300
+ var routeDst string
301
+ for i := 0 ; i < 3 ; i ++ {
302
+ routeDst = framework .RandomCIDR (f .ClusterIPFamily )
303
+ if routeDst != subnet .Spec .CIDRBlock {
304
+ break
305
+ }
306
+ }
307
+ framework .ExpectNotEqual (routeDst , subnet .Spec .CIDRBlock )
308
+ routeGw := framework .RandomIPs (subnet .Spec .CIDRBlock , "" , 1 )
309
+ ipv4Gateway , ipv6Gateway := util .SplitStringIP (subnet .Spec .Gateway )
310
+ ipv4RouteDst , ipv6RouteDst := util .SplitStringIP (routeDst )
311
+ ipv4RouteGw , ipv6RouteGw := util .SplitStringIP (routeGw )
312
+ routes := make ([]request.Route , 0 , 4 )
313
+ if f .HasIPv4 () {
314
+ routes = append (routes , request.Route {Gateway : ipv4RouteGw })
315
+ routes = append (routes , request.Route {Destination : ipv4RouteDst , Gateway : ipv4Gateway })
316
+
317
+ }
318
+ if f .HasIPv6 () {
319
+ routes = append (routes , request.Route {Gateway : ipv6RouteGw })
320
+ routes = append (routes , request.Route {Destination : ipv6RouteDst , Gateway : ipv6Gateway })
321
+ }
322
+
323
+ ginkgo .By ("Updating subnet " + subnetName + " with routes " + fmt .Sprintf ("%v" , routes ))
324
+ subnet .Spec .Routes = routes
325
+ subnet = subnetClient .Update (subnet , metav1.UpdateOptions {}, 2 * time .Second )
326
+
327
+ ginkgo .By ("Creating pod " + podName )
328
+ cmd := []string {"sleep" , "infinity" }
329
+ annotations := map [string ]string {util .LogicalSwitchAnnotation : subnetName }
330
+ pod := framework .MakePrivilegedPod (namespaceName , podName , nil , annotations , f .KubeOVNImage , cmd , nil )
331
+ _ = podClient .CreateSync (pod )
332
+
333
+ ginkgo .By ("Retrieving pod routes" )
334
+ podRoutes , err := iproute .RouteShow ("" , "" , func (cmd ... string ) ([]byte , []byte , error ) {
335
+ return framework .KubectlExec (namespaceName , podName , cmd ... )
336
+ })
337
+ framework .ExpectNoError (err )
338
+
339
+ ginkgo .By ("Validating pod routes" )
340
+ actualRoutes := make ([]request.Route , 0 , len (podRoutes ))
341
+ for _ , r := range podRoutes {
342
+ if r .Gateway != "" || r .Dst != "" {
343
+ actualRoutes = append (actualRoutes , request.Route {Destination : r .Dst , Gateway : r .Gateway })
344
+ }
345
+ }
346
+ ipv4CIDR , ipv6CIDR := util .SplitStringIP (subnet .Spec .CIDRBlock )
347
+ if f .HasIPv4 () {
348
+ framework .ExpectContainElement (actualRoutes , request.Route {Destination : ipv4CIDR })
349
+ framework .ExpectNotContainElement (actualRoutes , request.Route {Destination : "default" , Gateway : ipv4Gateway })
350
+ framework .ExpectContainElement (actualRoutes , request.Route {Destination : "default" , Gateway : ipv4RouteGw })
351
+ framework .ExpectContainElement (actualRoutes , request.Route {Destination : ipv4RouteDst , Gateway : ipv4Gateway })
352
+ }
353
+ if f .HasIPv6 () {
354
+ framework .ExpectContainElement (actualRoutes , request.Route {Destination : ipv6CIDR })
355
+ framework .ExpectNotContainElement (actualRoutes , request.Route {Destination : "default" , Gateway : ipv6Gateway })
356
+ framework .ExpectContainElement (actualRoutes , request.Route {Destination : "default" , Gateway : ipv6RouteGw })
357
+ framework .ExpectContainElement (actualRoutes , request.Route {Destination : ipv6RouteDst , Gateway : ipv6Gateway })
358
+ }
359
+ })
360
+
292
361
framework .ConformanceIt ("should create subnet with centralized gateway" , func () {
293
362
ginkgo .By ("Getting nodes" )
294
363
nodes , err := e2enode .GetReadySchedulableNodes (context .Background (), cs )
0 commit comments