-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_container_message.sh
executable file
·77 lines (65 loc) · 1.95 KB
/
run_container_message.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env bash
# Usage: run_container_message.sh (relative/path/to/message.json)
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source "$DIR/common.sh"
read_reactor_rc
detect_ci
# Load up the message to send
if [ ! -z "$1" ]; then
MESSAGE_PATH=$1
else
MESSAGE_PATH="tests/data/local-message-01.json"
fi
MESSAGE=
if [ -f "${MESSAGE_PATH}" ]; then
MESSAGE=$(cat ${MESSAGE_PATH})
fi
if [ -z "${MESSAGE}" ]; then
die "Message not readable from ${MESSAGE_PATH}"
fi
# Read Docker envs from secrets.json
if [ ! -f "${REACTOR_SECRETS_FILE}" ]; then
die "No secrets.json found"
fi
# This emulates Abaco's environment-setting behavior
log "Reading in container secrets file..."
DOCKER_ENVS=$(python ${DIR}/secrets_to_docker_envs.py ${REACTOR_SECRETS_FILE})
# Set the Reactor.local flag. Also ensures DOCKER_ENVS is not empty
DOCKER_ENVS="-e LOCALONLY=1 ${DOCKER_ENVS}"
# Agave API integration
AGAVE_CREDS="${AGAVE_CACHE_DIR}"
log "Pulling API credentials from ${AGAVE_CREDS}"
if [ ! -d "${AGAVE_CREDS}" ]; then
AGAVE_CREDS="${HOME}/.agave"
# Refresh them with a call to Agave.restore()
if ((AGAVE_PREFER_PYTHON)); then
log "Refreshing using AgavePy"
eval python ${DIR}/refresh_agave_credentials.py
else
log "Refreshing using CLI"
auth-tokens-refresh -S
fi
fi
if [ ! -f "${AGAVE_CREDS}/current" ]; then
die "No Agave API credentials found in ${AGAVE_CREDS}"
fi
TEMP=`mktemp -d $PWD/tmp.XXXXXX` && \
echo "Working directory: $TEMP"
CNAME=${CI_CONTAINER_NAME}
log "Container name: ${CNAME}"
function finish {
log "Forcing ${CNAME} to stop..."
docker stop ${CNAME} ; log "(Stopped)"
if ((! NOCLEANUP)); then
rm -rf ${TEMP}
fi
}
trap finish EXIT
docker run -t -v ${AGAVE_CREDS}:/root/.agave:rw \
--name ${CNAME} \
-v ${TEMP}:/mnt/ephemeral-01:rw \
-e MSG="${MESSAGE}" \
${DOCKER_ENVS} \
${CONTAINER_IMAGE}
DOCKER_EXIT_CODE="$?"
exit ${DOCKER_EXIT_CODE}