fix image staging to non gcr.io repos

This commit is contained in:
Mike Danese 2016-07-12 13:42:50 -07:00
parent d4df168186
commit c5b5e1f28e

View File

@ -444,6 +444,8 @@ function stage-images() {
if [[ "${KUBE_DOCKER_REGISTRY}" == "gcr.io/"* ]]; then
local docker_push_cmd=("gcloud" "docker")
else
local docker_push_cmd=("${docker_cmd[@]}")
fi
local temp_dir="$(mktemp -d -t 'kube-server-XXXX')"