forked from ansible/galaxy_ng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_deploy.sh
executable file
·52 lines (39 loc) · 1.68 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
43
44
45
46
47
48
49
50
51
52
#!/bin/bash
set -o errexit
set -o nounset
set -o verbose
# Create tmp dir to store data in during job run (do NOT store in $WORKSPACE)
readonly TMP_JOB_DIR=$(mktemp -d -p "$HOME" -t "jenkins-${JOB_NAME}-${BUILD_NUMBER}-XXXXXX")
echo "job tmp dir location: $TMP_JOB_DIR"
function job_cleanup() {
echo "cleaning up job tmp dir: $TMP_JOB_DIR"
rm -fr $TMP_JOB_DIR
}
trap job_cleanup EXIT ERR SIGINT SIGTERM
readonly DOCKER_CONF="${TMP_JOB_DIR}/.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}"