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:
parent
f0762ba144
commit
fbb41cc698
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue