blob: 8639143af1121578390b7d15472e78f859f02a31 (
plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#!/bin/bash
# This script pushes all of the built images to a registry.
#
# Set OS_PUSH_BASE_REGISTRY to prefix the destination images
#
set -o errexit
set -o nounset
set -o pipefail
STARTTIME=$(date +%s)
OS_ROOT=$(dirname "${BASH_SOURCE}")/..
PREFIX="${PREFIX:-openshift/openshift-ansible}"
# Go to the top of the tree.
cd "${OS_ROOT}"
# Allow a release to be repushed with a tag
tag="${OS_PUSH_TAG:-}"
if [[ -n "${tag}" ]]; then
tag=":${tag}"
else
tag=":latest"
fi
# Source tag
source_tag="${OS_TAG:-}"
if [[ -z "${source_tag}" ]]; then
source_tag="latest"
fi
images=(
${PREFIX}
)
PUSH_OPTS=""
if docker push --help | grep -q force; then
PUSH_OPTS="--force"
fi
if [[ "${OS_PUSH_BASE_REGISTRY-}" != "" || "${tag}" != "" ]]; then
set -e
for image in "${images[@]}"; do
docker tag "${image}:${source_tag}" "${OS_PUSH_BASE_REGISTRY-}${image}${tag}"
done
set +e
fi
for image in "${images[@]}"; do
docker push ${PUSH_OPTS} "${OS_PUSH_BASE_REGISTRY-}${image}${tag}"
done
ret=$?; ENDTIME=$(date +%s); echo "$0 took $(($ENDTIME - $STARTTIME)) seconds"; exit "$ret"
|