diff --git a/test/e2e/cloud/gcp/BUILD b/test/e2e/cloud/gcp/BUILD index 607d1bf629a..1a005508512 100644 --- a/test/e2e/cloud/gcp/BUILD +++ b/test/e2e/cloud/gcp/BUILD @@ -11,6 +11,7 @@ go_library( "kubelet_security.go", "node_lease.go", "reboot.go", + "recreate_node.go", "resize_nodes.go", "restart.go", ], @@ -37,6 +38,7 @@ go_library( "//test/e2e/framework/network:go_default_library", "//test/e2e/framework/node:go_default_library", "//test/e2e/framework/pod:go_default_library", + "//test/e2e/framework/providers/gce:go_default_library", "//test/e2e/framework/skipper:go_default_library", "//test/e2e/framework/ssh:go_default_library", "//test/e2e/upgrades:go_default_library", diff --git a/test/e2e/node/recreate_node.go b/test/e2e/cloud/gcp/recreate_node.go similarity index 94% rename from test/e2e/node/recreate_node.go rename to test/e2e/cloud/gcp/recreate_node.go index da3fc974485..73a98644c99 100644 --- a/test/e2e/node/recreate_node.go +++ b/test/e2e/cloud/gcp/recreate_node.go @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package node +package gcp import ( "context" @@ -41,15 +41,7 @@ const ( recreateNodeReadyAgainTimeout = 10 * time.Minute ) -func nodeNames(nodes []v1.Node) []string { - result := make([]string, 0, len(nodes)) - for i := range nodes { - result = append(result, nodes[i].Name) - } - return result -} - -var _ = ginkgo.Describe("Recreate [Feature:Recreate]", func() { +var _ = SIGDescribe("Recreate [Feature:Recreate]", func() { f := framework.NewDefaultFramework("recreate") var originalNodes []v1.Node var originalPodNames []string diff --git a/test/e2e/node/BUILD b/test/e2e/node/BUILD index 9ec9225e9e1..d1501ddd967 100644 --- a/test/e2e/node/BUILD +++ b/test/e2e/node/BUILD @@ -14,7 +14,6 @@ go_library( "pod_gc.go", "pods.go", "pre_stop.go", - "recreate_node.go", "runtimeclass.go", "security_context.go", "ssh.go", @@ -47,7 +46,6 @@ go_library( "//test/e2e/framework/node:go_default_library", "//test/e2e/framework/perf:go_default_library", "//test/e2e/framework/pod:go_default_library", - "//test/e2e/framework/providers/gce:go_default_library", "//test/e2e/framework/rc:go_default_library", "//test/e2e/framework/security:go_default_library", "//test/e2e/framework/skipper:go_default_library",