From fbb41cc698176ec1eef8ee39bc343bc307aa7c78 Mon Sep 17 00:00:00 2001 From: Marcin Owsiany Date: Thu, 22 Dec 2016 10:55:04 +0100 Subject: [PATCH] Do not push containers to remote repo as part of test-e2e. Since the cluster runs locally, this seems unnecessary. --- hack/e2e.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/e2e.go b/hack/e2e.go index c322d88545..b2aeed408e 100644 --- a/hack/e2e.go +++ b/hack/e2e.go @@ -214,7 +214,7 @@ func run(deploy deployer) error { func Build() error { // The build-release script needs stdin to ask the user whether // it's OK to download the docker image. - cmd := exec.Command("make", "docker-build", "docker-push") + cmd := exec.Command("make", "docker-build") cmd.Stdin = os.Stdin if err := finishRunning("build-release", cmd); err != nil { return fmt.Errorf("error building: %v", err)