@@ -3,6 +3,7 @@ package networking
3
3
import (
4
4
"fmt"
5
5
"regexp"
6
+ "time"
6
7
7
8
"github.com/openshift/origin/pkg/network"
8
9
networkapi "github.com/openshift/origin/pkg/network/apis/network"
@@ -11,7 +12,9 @@ import (
11
12
testutil "github.com/openshift/origin/test/util"
12
13
13
14
kapiv1 "k8s.io/api/core/v1"
15
+ "k8s.io/apimachinery/pkg/api/errors"
14
16
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
17
+ "k8s.io/apimachinery/pkg/util/wait"
15
18
e2e "k8s.io/kubernetes/test/e2e/framework"
16
19
17
20
. "github.com/onsi/ginkgo"
@@ -54,7 +57,17 @@ func makeNamespaceMulticastEnabled(ns *kapiv1.Namespace) {
54
57
clientConfig , err := testutil .GetClusterAdminClientConfig (testexutil .KubeConfigPath ())
55
58
networkClient := networkclient .NewForConfigOrDie (clientConfig )
56
59
expectNoError (err )
57
- netns , err := networkClient .Network ().NetNamespaces ().Get (ns .Name , metav1.GetOptions {})
60
+ var netns * networkapi.NetNamespace
61
+ err = wait .Poll (time .Second , 2 * time .Minute , func () (bool , error ) {
62
+ netns , err = networkClient .Network ().NetNamespaces ().Get (ns .Name , metav1.GetOptions {})
63
+ if err != nil {
64
+ if errors .IsNotFound (err ) {
65
+ return false , nil
66
+ }
67
+ return false , err
68
+ }
69
+ return true , nil
70
+ })
58
71
expectNoError (err )
59
72
if netns .Annotations == nil {
60
73
netns .Annotations = make (map [string ]string , 1 )
0 commit comments