Skip to content

Commit

Permalink
Do not push containers to remote repo as part of test-e2e.
Browse files Browse the repository at this point in the history
Since the cluster runs locally, this seems unnecessary.
  • Loading branch information
porridge committed Dec 22, 2016
1 parent f0762ba commit fbb41cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/e2e.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit fbb41cc

Please sign in to comment.