From 36551294a5aae0fcc9e4f825c3b55d2db179ecd9 Mon Sep 17 00:00:00 2001 From: Lukasz Szaszkiewicz Date: Fri, 20 Jan 2023 14:13:43 +0100 Subject: [PATCH] e2e/reconciler/cluster: temporarily schedule all workspaces on the root shard the issue will be eventually addressed in kcp-dev#2649 --- test/e2e/reconciler/cluster/controller_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/reconciler/cluster/controller_test.go b/test/e2e/reconciler/cluster/controller_test.go index 56774323b80..d51cc5a7f2c 100644 --- a/test/e2e/reconciler/cluster/controller_test.go +++ b/test/e2e/reconciler/cluster/controller_test.go @@ -164,7 +164,7 @@ func TestClusterController(t *testing.T) { } source := framework.SharedKcpServer(t) - orgPath, _ := framework.NewOrganizationFixture(t, source) + orgPath, _ := framework.NewOrganizationFixture(t, source, framework.WithRootShard()) for i := range testCases { testCase := testCases[i] @@ -175,7 +175,7 @@ func TestClusterController(t *testing.T) { t.Cleanup(cancelFunc) t.Log("Creating a workspace") - wsPath, _ := framework.NewWorkspaceFixture(t, source, orgPath, framework.WithName("source")) + wsPath, _ := framework.NewWorkspaceFixture(t, source, orgPath, framework.WithName("source"), framework.WithRootShard()) // clients sourceConfig := source.BaseConfig(t)