Add GKE coverage for e2e tests that support both GCE and GKE

This commit is contained in:
Alex Mohr
2015-07-10 10:47:22 -07:00
parent 3f2ac7864b
commit a885166890
3 changed files with 11 additions and 10 deletions

View File

@@ -51,11 +51,11 @@ var _ = Describe("Reboot", func() {
c, err = loadClient()
Expect(err).NotTo(HaveOccurred())
// These tests requires SSH, so the provider check should be identical to there
// These tests requires SSH to nodes, so the provider check should be identical to there
// (the limiting factor is the implementation of util.go's getSigner(...)).
// Cluster must support node reboot
SkipUnlessProviderIs("gce", "aws")
SkipUnlessProviderIs("gce", "gke", "aws")
})
It("each node by ordering clean reboot and ensure they function upon restart", func() {