Do not push containers to remote repo as part of test-e2e.

Since the cluster runs locally, this seems unnecessary.
This commit is contained in:
Marcin Owsiany 2016-12-22 10:55:04 +01:00
parent f0762ba144
commit fbb41cc698

View file

@ -214,7 +214,7 @@ func run(deploy deployer) error {
func Build() error { func Build() error {
// The build-release script needs stdin to ask the user whether // The build-release script needs stdin to ask the user whether
// it's OK to download the docker image. // 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 cmd.Stdin = os.Stdin
if err := finishRunning("build-release", cmd); err != nil { if err := finishRunning("build-release", cmd); err != nil {
return fmt.Errorf("error building: %v", err) return fmt.Errorf("error building: %v", err)