forked from ansible/galaxy_ng
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build_deploy.sh
executable file
·42 lines (31 loc) · 1.33 KB
/
build_deploy.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
33
34
35
36
37
38
39
40
41
42
#!/bin/bash
set -o errexit
set -o nounset
set -o verbose
readonly DOCKER_CONF="${PWD}/.docker"
readonly IMAGE='quay.io/cloudservices/automation-hub-galaxy-ng'
readonly IMAGE_TAG="$(git rev-parse --short=7 HEAD)"
readonly QUAY_USER="${QUAY_USER:-}"
readonly QUAY_TOKEN="${QUAY_TOKEN:-}"
readonly RH_REGISTRY_USER="${RH_REGISTRY_USER:-}"
readonly RH_REGISTRY_TOKEN="${RH_REGISTRY_TOKEN:-}"
if [[ "${GIT_BRANCH}" == 'stable' ]]; then
IMAGE_ALIAS='qa'
else
IMAGE_ALIAS='latest'
fi
if [[ -z "${QUAY_USER}" || -z "${QUAY_TOKEN}" ]]; then
echo "Error: QUAY_USER and QUAY_TOKEN must be set."
exit 1
fi
if [[ -z "${RH_REGISTRY_USER}" || -z "${RH_REGISTRY_TOKEN}" ]]; then
echo "Error: RH_REGISTRY_USER and RH_REGISTRY_TOKEN must be set."
exit 1
fi
mkdir -p "${DOCKER_CONF}"
docker --config="${DOCKER_CONF}" login --username "${QUAY_USER}" --password "${QUAY_TOKEN}" quay.io
docker --config="${DOCKER_CONF}" login --username "${RH_REGISTRY_USER}" --password "${RH_REGISTRY_TOKEN}" registry.redhat.io
docker --config="${DOCKER_CONF}" build --build-arg "GIT_COMMIT=${GIT_BRANCH}:${IMAGE_TAG}" --tag "${IMAGE}:${IMAGE_TAG}" .
docker --config="${DOCKER_CONF}" push "${IMAGE}:${IMAGE_TAG}"
docker --config="${DOCKER_CONF}" tag "${IMAGE}:${IMAGE_TAG}" "${IMAGE}:${IMAGE_ALIAS}"
docker --config="${DOCKER_CONF}" push "${IMAGE}:${IMAGE_ALIAS}"