From 1a487d6971901147f05086ae20e507991d88847f Mon Sep 17 00:00:00 2001 From: bartoval Date: Thu, 3 Apr 2025 17:47:22 +0200 Subject: [PATCH] move docker to skupper repo --- build-image.sh | 5 ++--- manifest.yaml | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/build-image.sh b/build-image.sh index 91860f3f..ccf8f0be 100755 --- a/build-image.sh +++ b/build-image.sh @@ -5,8 +5,9 @@ set -euo pipefail PREFER_PODMAN="${PREFER_PODMAN:-0}" PUSH="${PUSH:-0}" TAG="${TAG:-latest}" -REGISTRY_ORG="${REGISTRY_ORG:-vbartoli}" SKUPPER_NAME="${SKUPPER_NAME:-skupper}" +REGISTRY_ORG="quay.io/${REGISTRY_ORG:-skupper}/rhsi-plugin" +IMAGE=${REGISTRY_ORG}:${TAG} if [[ -x "$(command -v podman)" && $PREFER_PODMAN == 1 ]]; then OCI_BIN="podman" @@ -14,8 +15,6 @@ else OCI_BIN="docker" fi -BASE_IMAGE="quay.io/${REGISTRY_ORG}/rhsi-plugin" -IMAGE=${BASE_IMAGE}:${TAG} echo "Building image '${IMAGE}' with ${OCI_BIN}" $OCI_BIN build --build-arg SKUPPER_NAME="${SKUPPER_NAME}" -t $IMAGE . diff --git a/manifest.yaml b/manifest.yaml index 495bf8c2..5e2fa975 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -26,7 +26,7 @@ spec: spec: containers: - name: openshift-site-plugin - image: quay.io/vbartoli/rhsi-plugin:latest + image: quay.io/skupper/rhsi-plugin:latest ports: - containerPort: 9443 protocol: TCP