-
Notifications
You must be signed in to change notification settings - Fork 31
/
run-docker.sh
executable file
·173 lines (147 loc) · 6.3 KB
/
run-docker.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
#!/bin/sh
set -x
set -e
if [ -z "${MVN}" ]; then
MVN="$(which mvn)"
fi
getPomProperty() {
if command -v xpath > /dev/null 2>&1 ; then
xpath -q -e "project/properties/$1/text()" pom.xml
elif command -v mvnd > /dev/null 2>&1 ; then
mvnd help:evaluate -o -B -q -DforceStdout -Dexpression="$1"
else
mvn help:evaluate -o -B -q -DforceStdout -Dexpression="$1"
fi
}
if [ -z "$CRYOSTAT_IMAGE" ]; then
CRYOSTAT_IMAGE="quay.io/cryostat/cryostat:latest"
fi
printf "\n\nRunning %s ...\n\n", "$CRYOSTAT_IMAGE"
if [ -z "$CRYOSTAT_RJMX_PORT" ]; then
CRYOSTAT_RJMX_PORT="$(getPomProperty cryostat.rjmxPort)"
fi
if [ -z "$CRYOSTAT_RMI_PORT" ]; then
CRYOSTAT_RMI_PORT="$CRYOSTAT_RJMX_PORT"
fi
if [ -z "$CRYOSTAT_WEB_HOST" ]; then
CRYOSTAT_WEB_HOST="$(getPomProperty cryostat.itest.webHost)"
fi
if [ -z "$CRYOSTAT_WEB_PORT" ]; then
CRYOSTAT_WEB_PORT="$(getPomProperty cryostat.itest.webPort)"
fi
if [ -z "$CRYOSTAT_EXT_WEB_PORT" ]; then
CRYOSTAT_EXT_WEB_PORT="$CRYOSTAT_WEB_PORT"
fi
if [ -z "$CRYOSTAT_AUTH_MANAGER" ]; then
CRYOSTAT_AUTH_MANAGER="io.cryostat.net.NoopAuthManager"
fi
if [ -z "$CRYOSTAT_REPORT_GENERATION_MAX_HEAP" ]; then
CRYOSTAT_REPORT_GENERATION_MAX_HEAP="200"
fi
if [ -z "$KEYSTORE_PATH" ] && [ -f "$(dirname "$0")/certs/cryostat-keystore.p12" ] ; then
KEYSTORE_PATH="/certs/cryostat-keystore.p12"
KEYSTORE_PASS="$(cat "$(dirname "$0")"/certs/keystore.pass)"
fi
if [ ! -d "$(dirname "$0")/archive" ]; then
mkdir "$(dirname "$0")/archive"
fi
if [ -z "$CRYOSTAT_JMX_CREDENTIALS_DB_PASSWORD" ]; then
CRYOSTAT_JMX_CREDENTIALS_DB_PASSWORD="$(< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c32)"
fi
if [ ! -d "$(dirname "$0")/conf" ]; then
mkdir "$(dirname "$0")/conf"
fi
if [ ! -d "$(dirname "$0")/conf/credentials" ]; then
mkdir "$(dirname "$0")/conf/credentials"
fi
if [ ! -d "$(dirname "$0")/conf/rules" ]; then
mkdir "$(dirname "$0")/conf/rules"
fi
if [ ! -d "$(dirname "$0")/truststore" ]; then
mkdir "$(dirname "$0")/truststore"
fi
if [ ! -d "$(dirname "$0")/clientlib" ]; then
mkdir "$(dirname "$0")/clientlib"
fi
if [ ! -d "$(dirname "$0")/templates" ]; then
mkdir "$(dirname "$0")/templates"
fi
if [ ! -d "$(dirname "$0")/probes" ]; then
mkdir "$(dirname "$0")/probes"
fi
if ! docker network ls | grep -q cryostat-docker ; then
docker network create --driver bridge cryostat-docker
fi
CONTAINERS="${CONTAINERS:+${CONTAINERS} }cryostat"
dockerCleanUp() {
# shellcheck disable=SC2086
if [ -n "${CONTAINERS}" ]; then
docker rm -f ${CONTAINERS}
fi
docker network rm -f cryostat-docker
}
trap dockerCleanUp EXIT
docker run \
--name cryostat \
--network cryostat-docker \
--user 0 \
--label io.cryostat.discovery="true" \
--label io.cryostat.jmxPort="${CRYOSTAT_RJMX_PORT}" \
--memory 768M \
--publish "${CRYOSTAT_WEB_PORT}:${CRYOSTAT_EXT_WEB_PORT}" \
--mount type=bind,source="$(dirname "$0")/archive",destination=/opt/cryostat.d/recordings.d \
--mount type=bind,source="$(dirname "$0")/certs",destination=/certs \
--mount type=bind,source="$(dirname "$0")/clientlib",destination=/clientlib \
--mount type=bind,source="$(dirname "$0")/conf",destination=/opt/cryostat.d/conf.d \
--mount type=bind,source="$(dirname "$0")/templates",destination=/opt/cryostat.d/templates.d \
--mount type=bind,source="$(dirname "$0")/truststore",destination=/truststore \
--mount type=bind,source="$(dirname "$0")/probes",destination=/opt/cryostat.d/conf.d/probes.d \
-v "$XDG_RUNTIME_DIR"/docker.sock:/var/run/docker.sock:Z \
--security-opt label=disable \
-e CRYOSTAT_ENABLE_JDP_BROADCAST="true" \
-e CRYOSTAT_REPORT_GENERATOR="$CRYOSTAT_REPORT_GENERATOR" \
-e CRYOSTAT_PLATFORM="$CRYOSTAT_PLATFORM" \
-e CRYOSTAT_DISABLE_BUILTIN_DISCOVERY="$CRYOSTAT_DISABLE_BUILTIN_DISCOVERY" \
-e CRYOSTAT_DISABLE_SSL="$CRYOSTAT_DISABLE_SSL" \
-e CRYOSTAT_DISABLE_JMX_AUTH="$CRYOSTAT_DISABLE_JMX_AUTH" \
-e CRYOSTAT_ALLOW_UNTRUSTED_SSL="$CRYOSTAT_ALLOW_UNTRUSTED_SSL" \
-e CRYOSTAT_RJMX_USER="$CRYOSTAT_RJMX_USER" \
-e CRYOSTAT_RJMX_PASS="$CRYOSTAT_RJMX_PASS" \
-e CRYOSTAT_RJMX_PORT="$CRYOSTAT_RJMX_PORT" \
-e CRYOSTAT_RMI_PORT="$CRYOSTAT_RMI_PORT" \
-e CRYOSTAT_CORS_ORIGIN="$CRYOSTAT_CORS_ORIGIN" \
-e CRYOSTAT_WEB_HOST="$CRYOSTAT_WEB_HOST" \
-e CRYOSTAT_WEB_PORT="$CRYOSTAT_WEB_PORT" \
-e CRYOSTAT_EXT_WEB_PORT="$CRYOSTAT_EXT_WEB_PORT" \
-e CRYOSTAT_MAX_WS_CONNECTIONS="$CRYOSTAT_MAX_WS_CONNECTIONS" \
-e CRYOSTAT_AUTH_MANAGER="$CRYOSTAT_AUTH_MANAGER" \
-e CRYOSTAT_TARGET_MAX_CONCURRENT_CONNECTIONS="$CRYOSTAT_TARGET_MAX_CONCURRENT_CONNECTIONS" \
-e CRYOSTAT_TARGET_CACHE_TTL="$CRYOSTAT_TARGET_CACHE_TTL" \
-e CRYOSTAT_CONFIG_PATH="/opt/cryostat.d/conf.d" \
-e CRYOSTAT_ARCHIVE_PATH="/opt/cryostat.d/recordings.d" \
-e CRYOSTAT_TEMPLATE_PATH="/opt/cryostat.d/templates.d" \
-e CRYOSTAT_PROBE_TEMPLATE_PATH="/opt/cryostat.d/conf.d/probes.d" \
-e CRYOSTAT_CLIENTLIB_PATH="/clientlib" \
-e CRYOSTAT_REPORT_GENERATION_MAX_HEAP="$CRYOSTAT_REPORT_GENERATION_MAX_HEAP" \
-e CRYOSTAT_DISCOVERY_PING_PERIOD="$CRYOSTAT_DISCOVERY_PING_PERIOD" \
-e CRYOSTAT_ACTIVE_REPORTS_CACHE_EXPIRY_SECONDS="$CRYOSTAT_ACTIVE_REPORTS_CACHE_EXPIRY_SECONDS" \
-e CRYOSTAT_ACTIVE_REPORTS_CACHE_REFRESH_SECONDS="$CRYOSTAT_ACTIVE_REPORTS_CACHE_REFRESH_SECONDS" \
-e CRYOSTAT_PUSH_MAX_FILES="$CRYOSTAT_PUSH_MAX_FILES" \
-e CRYOSTAT_VERTX_POOL_SIZE="$CRYOSTAT_VERTX_POOL_SIZE" \
-e GRAFANA_DATASOURCE_URL="$GRAFANA_DATASOURCE_URL" \
-e GRAFANA_DASHBOARD_URL="$GRAFANA_DASHBOARD_URL" \
-e KEYSTORE_PATH="$KEYSTORE_PATH" \
-e KEYSTORE_PASS="$KEYSTORE_PASS" \
-e KEY_PATH="$KEY_PATH" \
-e CERT_PATH="$CERT_PATH" \
-e CRYOSTAT_JUL_CONFIG="$CRYOSTAT_JUL_CONFIG" \
-e CRYOSTAT_JDBC_DRIVER="$CRYOSTAT_JDBC_DRIVER" \
-e CRYOSTAT_JDBC_URL="$CRYOSTAT_JDBC_URL" \
-e CRYOSTAT_JDBC_USERNAME="$CRYOSTAT_JDBC_USERNAME" \
-e CRYOSTAT_JDBC_PASSWORD="$CRYOSTAT_JDBC_PASSWORD" \
-e CRYOSTAT_JMX_CREDENTIALS_DB_PASSWORD="$CRYOSTAT_JMX_CREDENTIALS_DB_PASSWORD" \
-e CRYOSTAT_HIBERNATE_DIALECT="$CRYOSTAT_HIBERNATE_DIALECT" \
-e CRYOSTAT_HBM2DDL="$CRYOSTAT_HBM2DDL" \
-e CRYOSTAT_LOG_DB_QUERIES="true" \
-e CRYOSTAT_DEV_MODE="$CRYOSTAT_DEV_MODE" \
--rm -it "$CRYOSTAT_IMAGE" "$@" 2>&1 | tee cryostat-run.log