From e81b8b8ee5a60e4cc7822f2df5803c8ddd07cff4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Wed, 5 Apr 2023 12:32:46 +0200 Subject: [PATCH] local-build: build-and-upload-payload is not quay.io specific MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Let's just print "to the registry" instead of printing "to quay.io", as the registry used is not tied to quay.io. Signed-off-by: Fabiano FidĂȘncio --- .../local-build/kata-deploy-build-and-upload-payload.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/packaging/kata-deploy/local-build/kata-deploy-build-and-upload-payload.sh b/tools/packaging/kata-deploy/local-build/kata-deploy-build-and-upload-payload.sh index c4ff1abf5..b0cb5676b 100755 --- a/tools/packaging/kata-deploy/local-build/kata-deploy-build-and-upload-payload.sh +++ b/tools/packaging/kata-deploy/local-build/kata-deploy-build-and-upload-payload.sh @@ -20,7 +20,7 @@ IMAGE_TAG="${REGISTRY}:kata-containers-$(git rev-parse HEAD)-$(uname -m)" echo "Building the image" docker build --tag ${IMAGE_TAG} . -echo "Pushing the image to quay.io" +echo "Pushing the image to the registry" docker push ${IMAGE_TAG} if [ -n "${TAG}" ]; then @@ -30,7 +30,7 @@ if [ -n "${TAG}" ]; then docker build --tag ${ADDITIONAL_TAG} . - echo "Pushing the image ${ADDITIONAL_TAG} to quay.io" + echo "Pushing the image ${ADDITIONAL_TAG} to the registry" docker push ${ADDITIONAL_TAG} fi