From 51529196113c186a6aa3153d1a2c909802ac1f0d Mon Sep 17 00:00:00 2001 From: Claudiu Belu Date: Wed, 4 Nov 2020 23:22:30 -0800 Subject: [PATCH] test images: Authenticate in order to push images We cannot push images without being authenticated. --- test/images/cloudbuild.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/images/cloudbuild.yaml b/test/images/cloudbuild.yaml index d6db1ff5530..552aa732395 100644 --- a/test/images/cloudbuild.yaml +++ b/test/images/cloudbuild.yaml @@ -24,7 +24,8 @@ steps: args: - '-c' - | - docker run --rm --privileged multiarch/qemu-user-static --reset -p yes \ + gcloud auth configure-docker \ + && docker run --rm --privileged multiarch/qemu-user-static --reset -p yes \ && export DOCKER_CLI_EXPERIMENTAL=enabled \ && docker buildx create --name img-builder --use \ && docker buildx inspect --bootstrap \