forked from apache/incubator-kie-kogito-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpush-local-registry.sh
30 lines (24 loc) · 1.16 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
#!/usr/bin/env bash
# Simple usage: /bin/sh scripts/push-local-registry.sh ${REGISTRY} ${SHORTENED_LATEST_VERSION} ${NS}
BUILD_ENGINE="docker"
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}"
while read image; 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 <<<$(python3 scripts/list-images.py)