forked from strapdata/docker-elassandra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-entrypoint.sh
More file actions
executable file
·163 lines (132 loc) · 4.6 KB
/
docker-entrypoint.sh
File metadata and controls
executable file
·163 lines (132 loc) · 4.6 KB
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
#!/bin/bash
# Batch modification
/etc/init.d/ssh start
# Set memlock limit to unlimited (before set -e)
ulimit -l unlimited 2&>/dev/null
set -e
[ "$DEBUG" ] && set -x
# first arg is `-f` or `--some-option`
# or there are no args
if [ "$#" -eq 0 ] || [ "${1#-}" != "$1" ]; then
set -- cassandra -f "$@"
fi
# allow the container to be started with `--user`
if [ "$1" = 'cassandra' -a "$(id -u)" = '0' ]; then
find /var/lib/cassandra /var/log/cassandra "$CASSANDRA_CONFIG" \! -user cassandra -exec chown cassandra '{}' +
exec gosu cassandra "$BASH_SOURCE" "$@"
fi
_ip_address() {
# scrape the first non-localhost IP address of the container
# in Swarm Mode, we often get two IPs -- the container IP, and the (shared) VIP, and the container IP should always be first
ip address | awk '$1 == "inet" && $NF != "lo" { gsub(/\/.+$/, "", $2); print $2; exit }'
}
# "sed -i", but without "mv" (which doesn't work on a bind-mounted file, for example)
_sed-in-place() {
local filename="$1"; shift
local tempFile
tempFile="$(mktemp)"
sed "$@" "$filename" > "$tempFile"
cat "$tempFile" > "$filename"
rm "$tempFile"
}
# usage:
# config_injection CASSANDRA $CASSANDRA_CONFIG/cassandra.yaml
# config_injection ELASTICSEARCH $CASSANDRA_CONFIG/elasticsearch.yml
config_injection() {
local filename="$2";
local filter
local tempFile
for v in $(compgen -v "${1}__"); do
echo "v=$v"
val="${!v}"
if [ "$val" ]; then
var=$(echo ${v#"${1}"}|sed 's/__/\./g')
if is_num ${val}; then
filter="${var}=${val}"
else
case ${val} in
true) filter="${var}=true";;
false) filter="${var}=false";;
*) filter="${var}=\"${val}\"";;
esac
fi
tempFile="$(mktemp)"
if [[ "$(yq --yaml-output . $filename | wc -l | xargs)" == 0 ]]; then
echo "${filter:1}" | sed 's/=/: /g' > "$tempFile"
else
yq --yaml-output ". * $(echo "${filter};" | gron -u)" $filename > "$tempFile"
fi
cat "$tempFile" > $filename
rm "$tempFile"
fi
done
if [ "$DEBUG" ]; then
echo "config_injection $filename:"
cat "$filename"
fi
}
is_num() {
re='^-?[0-9]+$'
[[ $1 =~ $re ]] && true
}
if [ "$1" = 'cassandra' ]; then
# init script (allows to define env var before conf generation)
for f in /docker-entrypoint-init.d/*; do
case "$f" in
*.sh) echo "$0: running $f"; . "$f" ;;
*) echo "$0: ignoring $f" ;;
esac
done
# btw, it has been already set in Dockerfile
: ${CASSANDRA_DAEMON:='org.apache.cassandra.service.ElassandraDaemon'}
export CASSANDRA_DAEMON
: ${CASSANDRA_RPC_ADDRESS='0.0.0.0'}
: ${CASSANDRA_LISTEN_ADDRESS='auto'}
if [ "$CASSANDRA_LISTEN_ADDRESS" = 'auto' ]; then
CASSANDRA_LISTEN_ADDRESS="$(_ip_address)"
fi
: ${CASSANDRA_BROADCAST_ADDRESS="$CASSANDRA_LISTEN_ADDRESS"}
if [ "$CASSANDRA_BROADCAST_ADDRESS" = 'auto' ]; then
CASSANDRA_BROADCAST_ADDRESS="$(_ip_address)"
fi
: ${CASSANDRA_BROADCAST_RPC_ADDRESS:=$CASSANDRA_BROADCAST_ADDRESS}
if [ -n "${CASSANDRA_NAME:+1}" ]; then
: ${CASSANDRA_SEEDS:="cassandra"}
fi
: ${CASSANDRA_SEEDS:="$CASSANDRA_BROADCAST_ADDRESS"}
_sed-in-place "$CASSANDRA_CONFIG/cassandra.yaml" -r 's/(- seeds:).*/\1 "'"$CASSANDRA_SEEDS"'"/'
for yaml in \
broadcast_address \
broadcast_rpc_address \
cluster_name \
endpoint_snitch \
listen_address \
num_tokens \
rpc_address \
start_rpc \
; do
var="CASSANDRA_${yaml^^}"
val="${!var}"
if [ "$val" ]; then
_sed-in-place "$CASSANDRA_CONFIG/cassandra.yaml" -r 's/^(# )?('"$yaml"':).*/\2 '"$val"'/'
fi
done
for rackdc in dc rack prefer_local dc_suffix; do
var="CASSANDRA_${rackdc^^}"
val="${!var}"
if [ "$val" ]; then
_sed-in-place "$CASSANDRA_CONFIG/cassandra-rackdc.properties" -r 's/^('"$rackdc"'=).*/\1 '"$val"'/'
fi
done
config_injection CASSANDRA $CASSANDRA_CONFIG/cassandra.yaml
config_injection ELASTICSEARCH $CASSANDRA_CONFIG/elasticsearch.yml
if [ "$LOCAL_JMX" = "no" ]; then
export JVM_OPTS="$JVM_OPTS -Djava.rmi.server.hostname=$POD_IP"
fi
: ${CASSANDRA_CGROUP_MEMORY_LIMIT='false'}
# Specifies if heap size should be limited by cgroup constraints
if [ "${CASSANDRA_CGROUP_MEMORY_LIMIT}" = 'true' ]; then
export JVM_OPTS="$JVM_OPTS -XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap -XX:MaxRAMFraction=2"
fi
fi
exec "$@"