Skip to content

Commit 6947113

Browse files
authored
Merge pull request #61 from bartoval/move_docker_repo
move docker to skupper repo
2 parents 78ead93 + 1a487d6 commit 6947113

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

build-image.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,16 @@ set -euo pipefail
55
PREFER_PODMAN="${PREFER_PODMAN:-0}"
66
PUSH="${PUSH:-0}"
77
TAG="${TAG:-latest}"
8-
REGISTRY_ORG="${REGISTRY_ORG:-vbartoli}"
98
SKUPPER_NAME="${SKUPPER_NAME:-skupper}"
9+
REGISTRY_ORG="quay.io/${REGISTRY_ORG:-skupper}/rhsi-plugin"
10+
IMAGE=${REGISTRY_ORG}:${TAG}
1011

1112
if [[ -x "$(command -v podman)" && $PREFER_PODMAN == 1 ]]; then
1213
OCI_BIN="podman"
1314
else
1415
OCI_BIN="docker"
1516
fi
1617

17-
BASE_IMAGE="quay.io/${REGISTRY_ORG}/rhsi-plugin"
18-
IMAGE=${BASE_IMAGE}:${TAG}
1918

2019
echo "Building image '${IMAGE}' with ${OCI_BIN}"
2120
$OCI_BIN build --build-arg SKUPPER_NAME="${SKUPPER_NAME}" -t $IMAGE .

manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spec:
2626
spec:
2727
containers:
2828
- name: openshift-site-plugin
29-
image: quay.io/vbartoli/rhsi-plugin:latest
29+
image: quay.io/skupper/rhsi-plugin:latest
3030
ports:
3131
- containerPort: 9443
3232
protocol: TCP

0 commit comments

Comments
 (0)