Make resize tests work on GKE

This commit is contained in:
CJ Cullen
2015-06-09 11:49:40 -07:00
parent 687e866d80
commit abc4e53648
3 changed files with 21 additions and 2 deletions

View File

@@ -77,7 +77,7 @@ func waitForNodeInstanceGroupSize(size int) error {
continue
}
if currentSize != size {
Logf("Waiting for node istance group size %d, current size %d", size, currentSize)
Logf("Waiting for node instance group size %d, current size %d", size, currentSize)
continue
}
Logf("Node instance group has reached the desired size %d", size)
@@ -224,7 +224,7 @@ func waitForPodsCreatedRunningResponding(c *client.Client, ns, name string, repl
}
var _ = Describe("Nodes", func() {
supportedProviders := []string{"gce"}
supportedProviders := []string{"gce", "gke"}
var testName string
var c *client.Client
var ns string