From e9e70ced989af3b5b2f6140bd1e49d74c7a43d4e Mon Sep 17 00:00:00 2001 From: Kai Lueke Date: Wed, 12 Nov 2025 16:20:23 +0900 Subject: [PATCH] ci-automation/release.sh: Skip bucket copy on failure until it works We got a DNS resolution problem due to UDP packets not going to the configured server. For now try the host network (and otherwise maybe a custom DNS server?). But in any case we should not block the release on that and continue. Signed-off-by: Kai Lueke --- ci-automation/release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci-automation/release.sh b/ci-automation/release.sh index 0f20ed4cca..8d5f30a605 100644 --- a/ci-automation/release.sh +++ b/ci-automation/release.sh @@ -170,12 +170,12 @@ function copy_from_bincache_to_bucket() { echo "${RCLONE_CONFIGURATION_FILE}" | base64 --decode > "${rclone_configuration_file}" echo "Copying the images from bincache to CloudFlare bucket" - docker run --rm \ + docker run --rm --net host \ -v "${rclone_configuration_file}:/opt/rclone.conf:ro" \ docker.io/rclone/rclone:1.71.1 \ --config "/opt/rclone.conf" \ sync \ - --http-url "https://${BUILDCACHE_SERVER}/images/${arch}/${version}" :http: "r2:flatcar/${channel}/${arch}-usr/${version}" + --http-url "https://${BUILDCACHE_SERVER}/images/${arch}/${version}" :http: "r2:flatcar/${channel}/${arch}-usr/${version}" || { echo "ERROR: Skipping bucket copy due to failure" ; } ) }