-
Notifications
You must be signed in to change notification settings - Fork 0
/
entrypoint
55 lines (47 loc) · 1.9 KB
/
entrypoint
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
#
# almost exact copy of:
# https://gitlab.com/gitlab-org/gitlab-runner/blob/master/dockerfiles/ubuntu/entrypoint
# (original is MIT-licensed)
#
# we need our copy because we want to run gitlab-runner as a specific user:group
#
# gitlab-runner data directory
DATA_DIR="/etc/gitlab-runner"
# fix permissions on the home directory
echo
echo "+-- changing /home/gitlab-runner owner to: $( getent passwd gitlab-runner | cut -d ':' -f 3,4 )"
chown -R "$( getent passwd gitlab-runner | cut -d ':' -f 3,4 )" /home/gitlab-runner
CONFIG_FILE=${CONFIG_FILE:-$DATA_DIR/config.toml}
# custom certificate authority path
CA_CERTIFICATES_PATH=${CA_CERTIFICATES_PATH:-$DATA_DIR/certs/ca.crt}
LOCAL_CA_PATH="/usr/local/share/ca-certificates/ca.crt"
update_ca() {
echo "Updating CA certificates..."
cp "${CA_CERTIFICATES_PATH}" "${LOCAL_CA_PATH}"
update-ca-certificates --fresh >/dev/null
}
if [ -f "${CA_CERTIFICATES_PATH}" ]; then
# update the ca if the custom ca is different than the current
cmp --silent "${CA_CERTIFICATES_PATH}" "${LOCAL_CA_PATH}" || update_ca
fi
# if we don't have a config file...
if [[ ! -e ${CONFIG_FILE} ]]; then
echo "+-- no config file found in: '${CONFIG_FILE}'"
# ...but we do have config vars...
if [[ -n ${CI_SERVER_URL} && -n ${RUNNER_TOKEN} && -n ${RUNNER_DESCRIPTION} && -n ${RUNNER_EXECUTOR} ]]; then
echo " configuration vars found, registering a new runner..."
# register the runner
su gitlab-runner -c \
"gitlab-runner register --non-interactive --config '${CONFIG_FILE}' --url '${CI_SERVER_URL}' --registration-token '${RUNNER_TOKEN}' --description '${RUNNER_DESCRIPTION}' --executor '${RUNNER_EXECUTOR}'"
if [ $? != 0 ]; then
echo " ERROR: failed to register the runner!"
exit 2
fi
else
echo " ERROR: no config file and no configuration vars!"
exit 1
fi
fi
# launch gitlab-runner passing all arguments
exec gitlab-runner "$@"