From bc18e81062449e51af222ba6d7d73ccc0de22b28 Mon Sep 17 00:00:00 2001 From: Etienne Perot Date: Tue, 26 Nov 2024 17:42:15 -0800 Subject: [PATCH] One-time force push of all images to Artifact Registry. Current images are uploaded but not labeled as `latest`. This change will label them as `latest` the next time the release pipeline runs. Once this has happened, I will then revert this change. PiperOrigin-RevId: 700510091 --- .buildkite/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildkite/release.yaml b/.buildkite/release.yaml index ef3e1ccce..8cecabbe1 100644 --- a/.buildkite/release.yaml +++ b/.buildkite/release.yaml @@ -23,7 +23,7 @@ steps: label: ":ship: Push all images (x86_64)" if: build.branch == "master" && build.tag == null commands: - - make ARCH=x86_64 DOCKER_PUSH_AS_LATEST=true push-all-images + - make ARCH=x86_64 DOCKER_PUSH_AS_LATEST=true DOCKER_FORCE_PUSH=true push-all-images - make ARCH=x86_64 REMOTE_IMAGE_PREFIX=gcr.io/gvisor-presubmit DOCKER_PUSH_AS_LATEST=true push-all-images agents: arch: "amd64" @@ -31,7 +31,7 @@ steps: label: ":ship: Push all images (aarch64)" if: build.branch == "master" && build.tag == null commands: - - make ARCH=aarch64 DOCKER_PUSH_AS_LATEST=true push-all-images + - make ARCH=aarch64 DOCKER_PUSH_AS_LATEST=true DOCKER_FORCE_PUSH=true push-all-images - make ARCH=aarch64 REMOTE_IMAGE_PREFIX=gcr.io/gvisor-presubmit DOCKER_PUSH_AS_LATEST=true push-all-images agents: arch: "arm64"