forked from apache/incubator-kie-kogito-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
push-local-registry.sh
33 lines (26 loc) · 1.33 KB
/
push-local-registry.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash
# Simple usage: /bin/sh scripts/push-local-registry.sh ${REGISTRY} ${SHORTENED_LATEST_VERSION} ${NS}
BUILD_ENGINE="docker"
# All Kogito images
IMAGES="kogito-quarkus-ubi8 kogito-quarkus-jvm-ubi8 kogito-quarkus-ubi8-s2i kogito-springboot-ubi8 kogito-springboot-ubi8-s2i kogito-data-index kogito-jobs-service kogito-management-console"
registry=${REGISTRY:-{1}}
version=${2:-latest}
namespace=${3:-openshift}
if [ "${registry}x" == "x" ]; then
echo "No registry provided, please set the env REGISTRY or set it as parameter to this script"
echo "Simple usage: /bin/sh scripts/push-local-registry.sh ${REGISTRY} ${SHORTENED_LATEST_VERSION} ${NS}"
exit 1
fi
if [ "${version}" == "latest" ]; then
echo "No version provided, latest will be used"
fi
if [ "${namespace}" == "openshift" ]; then
echo "No namespace provided, images will be installed on openshift namespace"
fi
echo "Images version ${version} will be pushed to registry ${registry}"
for image in ${IMAGES}; do
echo "tagging image ${image} to ${registry}/${namespace}/${image}:${version}"
${BUILD_ENGINE} tag quay.io/kiegroup/${image}:${version} ${registry}/${namespace}/${image}:${version}
echo "Deleting imagestream ${image} if exists `oc delete oc -n ${namespace} ${image}`"
${BUILD_ENGINE} push ${registry}/${namespace}/${image}:${version}
done