From 38ef2ba2f1af7be2d9d861f51e51bce79bed5074 Mon Sep 17 00:00:00 2001 From: Alberto Bellotti Date: Mon, 11 Nov 2024 15:27:01 -0500 Subject: [PATCH] Missing the source and destination repository transport (docker://) for the skopeo image copy tool. --- .tekton/rhproxy-engine-container-release-push.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.tekton/rhproxy-engine-container-release-push.yaml b/.tekton/rhproxy-engine-container-release-push.yaml index d263412..0a59c68 100644 --- a/.tekton/rhproxy-engine-container-release-push.yaml +++ b/.tekton/rhproxy-engine-container-release-push.yaml @@ -546,14 +546,14 @@ spec: # Copy the Target x.y.z release skopeo copy --dest-username "${DEST_QUAY_USERNAME}" --dest-password "${DEST_QUAY_PASSWORD}" \ - "${SOURCE_IMAGE}" \ - "${TARGET_REPO}:${TARGET_RELEASE}" + "docker://${SOURCE_IMAGE}" \ + "docker://${TARGET_REPO}:${TARGET_RELEASE}" echo "Pushed Image: ${TARGET_REPO}:${TARGET_RELEASE}" # Copy the Minor x.y release skopeo copy --dest-username "${DEST_QUAY_USERNAME}" --dest-password "${DEST_QUAY_PASSWORD}" \ - "${SOURCE_IMAGE}" \ - "${TARGET_REPO}:${MINOR_RELEASE}" + "docker://${SOURCE_IMAGE}" \ + "docker://${TARGET_REPO}:${MINOR_RELEASE}" echo "Pushed Image: ${TARGET_REPO}:${MINOR_RELEASE}" runAfter: - apply-tags