Skip to content

Commit e895aca

Browse files
author
OpenShift Bot
authored
Merge pull request #14051 from enj/enj/i/etcd_sa_flake/14020
Merged by openshift-bot
2 parents c49244c + 55330d4 commit e895aca

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test/integration/etcd_storage_path_test.go

+8
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import (
2424

2525
"github.com/openshift/origin/pkg/api/latest"
2626
serverapi "github.com/openshift/origin/pkg/cmd/server/api"
27+
"github.com/openshift/origin/pkg/cmd/server/bootstrappolicy"
2728
osclientcmd "github.com/openshift/origin/pkg/cmd/util/clientcmd"
2829
testutil "github.com/openshift/origin/test/util"
2930
testserver "github.com/openshift/origin/test/util/server"
@@ -873,6 +874,13 @@ func testEtcdStoragePath(t *testing.T, etcdServer *etcdtest.EtcdTestServer, gett
873874
if _, err := kubeClient.Core().Namespaces().Create(&kapi.Namespace{ObjectMeta: metav1.ObjectMeta{Name: testNamespace}}); err != nil {
874875
t.Fatalf("error creating test namespace: %#v", err)
875876
}
877+
if err := testserver.WaitForServiceAccounts(
878+
kubeClient,
879+
testNamespace,
880+
[]string{bootstrappolicy.DefaultServiceAccountName, bootstrappolicy.BuilderServiceAccountName, bootstrappolicy.DeployerServiceAccountName},
881+
); err != nil {
882+
t.Fatalf("error creating test namespace service accounts: %#v", err)
883+
}
876884

877885
kindSeen := sets.NewString()
878886
etcdSeen := map[schema.GroupVersionResource]empty{}

0 commit comments

Comments
 (0)