Make basic end to end test robustly wait for hostIP

This commit is contained in:
Satnam Singh
2015-01-16 13:11:42 -08:00
parent a9cbc58b8e
commit fc83ba704b
4 changed files with 90 additions and 75 deletions

View File

@@ -22,7 +22,7 @@ import (
)
// A basic test to check the deployment of the
// container.cloud.google.com/_b_k8s_test/serve_hostname image
// contaier gcr.io/_b_k8s_test/serve_hostname image
// with the TestBasicImage test. This test is only supported
// for the providers GCE and GKE.
func TestPrivate(c *client.Client) bool {
@@ -31,5 +31,5 @@ func TestPrivate(c *client.Client) bool {
return true
}
glog.Info("Calling out to TestBasic")
return TestBasicImage(c, "container.cloud.google.com/_b_k8s_test/serve_hostname")
return TestBasicImage(c, "private", "gcr.io/_b_k8s_test/serve_hostname:1.0")
}