diff --git a/Makefile b/Makefile index 3ae61acacee2..671bc8829f34 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ bazel-build: //cmd/..." bazel-push-images: - hack/dockerized "DOCKER_PREFIX=${DOCKER_PREFIX} DOCKER_TAG=${DOCKER_TAG} ./hack/bazel-push-images.sh" + hack/dockerized "DOCKER_PREFIX=${DOCKER_PREFIX} DOCKER_TAG=${DOCKER_TAG} DOCKER_TAG_ALT=${DOCKER_TAG_ALT} ./hack/bazel-push-images.sh" bazel-tests: hack/dockerized "bazel test --test_output=errors -- //pkg/... " diff --git a/cluster/ephemeral-provider-common.sh b/cluster/ephemeral-provider-common.sh index 96d5666f4552..55a59bd2a5ba 100644 --- a/cluster/ephemeral-provider-common.sh +++ b/cluster/ephemeral-provider-common.sh @@ -2,7 +2,9 @@ set -e -_cli="docker run --privileged --net=host --rm ${USE_TTY} -v /var/run/docker.sock:/var/run/docker.sock kubevirtci/gocli@sha256:4a4565eb4487be95f464cb942590bbaa980a5b56acb32d955f7a9f81f4ba843c" +_cli_container="kubevirtci/gocli@sha256:4a4565eb4487be95f464cb942590bbaa980a5b56acb32d955f7a9f81f4ba843c" +_cli_with_tty="docker run --privileged --net=host --rm -t -v /var/run/docker.sock:/var/run/docker.sock ${_cli_container}" +_cli="docker run --privileged --net=host --rm ${USE_TTY} -v /var/run/docker.sock:/var/run/docker.sock ${_cli_container}" function _main_ip() { echo 127.0.0.1 @@ -17,6 +19,7 @@ function prepare_config() { cat >hack/config-provider-$KUBEVIRT_PROVIDER.sh <