@@ -385,13 +385,6 @@ var _ = g.Describe("[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:Ro
385385
386386 var err error
387387 var snifferPodsNodes []string
388- // Check if the cluster is in local gateway mode
389- network , err := oc .AdminOperatorClient ().OperatorV1 ().Networks ().Get (context .TODO (), "cluster" , metav1.GetOptions {})
390- o .Expect (err ).NotTo (o .HaveOccurred ())
391- if network .Spec .DefaultNetwork .OVNKubernetesConfig .GatewayConfig != nil && network .Spec .DefaultNetwork .OVNKubernetesConfig .GatewayConfig .RoutingViaHost && testCUDNTopology == "layer2" {
392- // TODO: unskip once CORENET-5881 is done.
393- skipper .Skipf ("Skipping Layer2 UDN advertisements test for local gateway mode" )
394- }
395388 if testCUDNTopology == "layer2" {
396389 // Running the packet sniffer on all nodes in the cluster for Layer2 UDN
397390 nodes , err := clientset .CoreV1 ().Nodes ().List (context .TODO (), metav1.ListOptions {})
@@ -563,12 +556,11 @@ var _ = g.Describe("[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:Ro
563556
564557 // All VRF-Lite checks for 'vrfLiteCUDNName' need to happen on a
565558 // single test (or otherwise we should resort to a serial job)
566- // This test has a long timeout due to its serial nature and also
567- // because of OCPBUGS-56488
568- g .It ("Pods should be able to communicate on a secondary network [Timeout:30m ]" , func () {
559+ // This test has a long timeout due to its serial nature, testing both
560+ // Layer 3 and Layer 2 topologies serially, and also because of OCPBUGS-56488
561+ g .It ("Pods should be able to communicate on a secondary network [Timeout:45m ]" , func () {
569562 g .By ("testing with a layer 3 CUDN" , func () { test ("layer3" ) })
570- // TODO: Add test for layer 2 UDN once CORENET-5881 is done.
571- //g.By("testing with a layer 2 CUDN", func() { test("layer2") })
563+ g .By ("testing with a layer 2 CUDN" , func () { test ("layer2" ) })
572564 })
573565 })
574566 })
0 commit comments