Merge pull request #4319 from justinsb/aws_fixes

Fixes to get AWS tests to run
This commit is contained in:
Brendan Burns
2015-02-18 22:43:46 -08:00
5 changed files with 308 additions and 59 deletions

View File

@@ -46,10 +46,10 @@ var _ = Describe("ReplicationController", func() {
It("should serve a basic image on each replica with a private image", func() {
switch testContext.provider {
case "gce", "gke", "aws":
case "gce", "gke":
ServeImageOrFail(c, "private", "gcr.io/_b_k8s_test/serve_hostname:1.0")
default:
By(fmt.Sprintf("Skipping private variant, which is only supported for providers gce, gke and aws (not %s)",
By(fmt.Sprintf("Skipping private variant, which is only supported for providers gce and gke (not %s)",
testContext.provider))
}
})