-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_container_process.sh
executable file
·101 lines (84 loc) · 2.49 KB
/
run_container_process.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/usr/bin/env bash
# Invoke code for a Reactor in an environment
# that closely emulates the Abaco runtime
# Required Globals
# CONTAINER_IMAGE
# Optional Globals
# REACTOR_RUN_OPTS
# REACTOR_USE_TMP
# REACTOR_CLEANUP_TMP
# REACTOR_LOCALONLY
# CONTAINER_REPO
# CONTAINER_TAG
# AGAVE_CACHE_DIR
# REACTOR_JOB_DIR
#
# Required inputs
# MESSAGE - File containing JSON message body
# CONFIG - Reactor config file (reactor.rc)
COMMANDS="$@"
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source "$DIR/common.sh"
read_reactor_rc
if [ -z "$CONTAINER_IMAGE" ]; then
die "CONTAINER_IMAGE not set"
fi
# API integration
AGAVE_CREDS="${AGAVE_CACHE_DIR}"
if [ ! -d "${AGAVE_CREDS}" ]; then
AGAVE_CREDS="${HOME}/.agave"
fi
if [ ! -f "${AGAVE_CREDS}/current" ]; then
log "No API credentials found in ${AGAVE_CREDS}"
fi
# Emphemeral directory
# Can be specified with REACTOR_JOB_DIR
# Can be turned off with REACTOR_NO_TMP=1
WD=${PWD}
TEMP=""
if ((REACTOR_USE_TMP )); then
if [ ! -z "${REACTOR_JOB_DIR}" ]; then
rm -rf "${REACTOR_JOB_DIR}";
mkdir -p "${REACTOR_JOB_DIR}"
TEMP=${REACTOR_JOB_DIR}
else
TEMP=`mktemp -d $PWD/tmp.XXXXXX`
fi
WD=${TEMP}
fi
log "Working directory: ${WD}"
# Volume mounts
MOUNTS="-v ${WD}:/mnt/ephemeral-01"
if [ -d "${AGAVE_CREDS}" ]; then
MOUNTS="$MOUNTS -v ${AGAVE_CREDS}:/root/.agave:rw"
fi
envopts=""
# API_KEY=$(jq -r ._REACTOR_SLACK_WEBHOOK ${DIR}/../secrets.json)
# envopts="${envopts} -e _REACTOR_SLACK_WEBHOOK=$API_KEY"
if ((! REACTOR_LOCALONLY )); then
envopts="${envopts} -e LOCALONLY=1"
fi
# Tweak config for Docker depending on if we're running under CI
dockeropts="${REACTOR_RUN_OPTS}"
detect_ci
if ((UNDER_CI)); then
# If running a Dockerized process with a volume mount
# written files will be owned by root and unwriteable by
# the CI user. We resolve this by setting the group, which
# is the same approach we use in the container runner
# that powers container-powered Agave jobs
dockeropts="-t ${dockeropts} --user=0:${CI_GID}"
else
dockeropts="-it ${dockeropts}"
fi
docker run ${dockeropts} ${envopts} ${MOUNTS} ${CONTAINER_IMAGE} ${@}
DOCKER_RUN_EXIT_CODE="$?"
# Clean up: Set permissions and ownership on volume mount
if ((UNDER_CI)); then
docker run ${dockeropts} ${MOUNTS} bash -c "chown -R ${CI_UID}:${CI_GID} /mnt/ephemeral-01; sleep 2"
fi
if ((REACTOR_CLEANUP_TMP)) && [ -z "${TEMP}" ]; then
log "Cleaning up ${TEMP}"
rm -rf ${TEMP}
fi
exit ${DOCKER_RUN_EXIT_CODE}