This repository has been archived by the owner on Jul 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 82
/
provision.sh
371 lines (293 loc) · 14.4 KB
/
provision.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
#!/bin/bash
set -o errexit
# Suppress some warnings
export DEBIAN_FRONTEND=noninteractive
export APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1
# Parse and set up input parameters
KONG_VERSION=$1
CASSANDRA_VERSION=$2
KONG_UTILITIES=$3
ANREPORTS=$4
LOGLEVEL=$5
VERSION_RE='[^0-9]*\([0-9]*\)[.]\([0-9]*\)[.]\([0-9]*\)\([0-9A-Za-z-]*\)'
KONG_MAJOR=$(echo $1 | sed -e "s#$VERSION_RE#\1#")
KONG_MINOR=$(echo $1 | sed -e "s#$VERSION_RE#\2#")
KONG_PATCH=$(echo $1 | sed -e "s#$VERSION_RE#\3#")
let "KONG_NUM_VERSION = KONG_MAJOR * 10000 + KONG_MINOR * 100 + KONG_PATCH"
echo "*************************************************************************"
echo "Installing Kong version: $KONG_VERSION"
echo "*************************************************************************"
if [ "$CASSANDRA_VERSION" = "2" ]; then
CASSANDRA_VERSION=2.2.19
CASSANDRA_VERSION_REPO=22x
else
CASSANDRA_VERSION=3.11.13
CASSANDRA_VERSION_REPO=311x
fi
POSTGRES_VERSION=10
# Set some version dependent options
KONG_DOWNLOAD_URL="https://github.com/Kong/kong/releases/download/$KONG_VERSION/kong-$KONG_VERSION.precise_all.deb"
KONG_ADMIN_LISTEN="0.0.0.0:8001"
KONG_ADMIN_LISTEN_SSL="0.0.0.0:8444"
if [ $KONG_NUM_VERSION -gt 001003 ]; then
KONG_DOWNLOAD_URL="https://download.konghq.com/gateway-0.x-ubuntu-trusty/pool/all/k/kong-community-edition/kong-community-edition_${KONG_VERSION}_all.deb"
fi
if [ $KONG_NUM_VERSION -ge 001300 ]; then
# Kong 0.13.0 listen directives format changed, now combined
KONG_ADMIN_LISTEN="0.0.0.0:8001, 0.0.0.0:8444 ssl"
unset KONG_ADMIN_LISTEN_SSL
fi
if [ $KONG_NUM_VERSION -ge 001500 ]; then
# use Bionic now instead of Trusty
KONG_DOWNLOAD_URL="https://download.konghq.com/gateway-0.x-ubuntu-bionic/pool/all/k/kong-community-edition/kong-community-edition_${KONG_VERSION}_all.deb"
# Let's enable transparent listening option as well
KONG_PROXY_LISTEN="0.0.0.0:8000 transparent, 0.0.0.0:8443 transparent ssl"
# Kong 0.15.0 has a stream module, let's enable that too
KONG_STREAM_LISTEN="0.0.0.0:9000 transparent"
fi
if [ $KONG_NUM_VERSION -ge 010300 ]; then
# download name changed
KONG_DOWNLOAD_URL="https://download.konghq.com/gateway-1.x-ubuntu-bionic/pool/all/k/kong/kong_${KONG_VERSION}_amd64.deb"
fi
if [ $KONG_NUM_VERSION -ge 020000 ]; then
# revert to defaults for these listeners
unset KONG_PROXY_LISTEN
unset KONG_STREAM_LISTEN
# update admin to defaults again, but on 0.0.0.0 instead of 127.0.0.1
KONG_ADMIN_LISTEN="0.0.0.0:8001 reuseport backlog=16384, 0.0.0.0:8444 http2 ssl reuseport backlog=16384"
# use Xenial now instead of Bionic
KONG_DOWNLOAD_URL="https://download.konghq.com/gateway-${KONG_MAJOR}.x-ubuntu-focal/pool/all/k/kong/kong_${KONG_VERSION}_amd64.deb"
fi
sudo chown -R vagrant /usr/local
if [ -n "$HTTP_PROXY" -o -n "$HTTPS_PROXY" ]; then
touch /etc/profile.d/proxy.sh
touch /etc/apt/apt.conf.d/50proxy
fi
if [ -n "$HTTP_PROXY" ]; then
printf "Using HTTP Proxy: %s\n" $HTTP_PROXY
echo "http_proxy=$HTTP_PROXY" >> /etc/profile.d/proxy.sh
echo "HTTP_PROXY=$HTTP_PROXY" >> /etc/profile.d/proxy.sh
echo "Acquire::http::proxy \"$HTTP_PROXY\";" >> /etc/apt/apt.conf.d/50proxy
echo "http_proxy=$HTTP_PROXY" >> /etc/wgetrc
fi
if [ -n "$HTTPS_PROXY" ]; then
printf "Using HTTPS Proxy: %s\n" $HTTPS_PROXY
echo "https_proxy=$HTTPS_PROXY" >> /etc/profile.d/proxy.sh
echo "HTTPS_PROXY=$HTTPS_PROXY" >> /etc/profile.d/proxy.sh
echo "Acquire::https::proxy \"$HTTP_PROXY\";" >> /etc/apt/apt.conf.d/50proxy
echo "https_proxy=$HTTPS_PROXY" >> /etc/wgetrc
fi
echo "*************************************************************************"
echo "Setting up APT repositories"
echo "*************************************************************************"
wget -q -O - '$@' https://www.apache.org/dist/cassandra/KEYS | sudo -E apt-key add -
sudo -E add-apt-repository "deb http://www.apache.org/dist/cassandra/debian $CASSANDRA_VERSION_REPO main"
sudo -E apt-get update -qq
sudo -E apt-get upgrade -qq
echo "*************************************************************************"
echo "Installing APT packages"
echo "*************************************************************************"
if [ $KONG_NUM_VERSION -ge 001500 ]; then
sudo -E apt-get install -qq iptables libcap2-bin nmap
fi
sudo -E apt-get install -qq httpie jq
sudo -E apt-get install -qq git curl make pkg-config unzip apt-transport-https \
language-pack-en libssl-dev m4 cpanminus zlibc \
zlib1g-dev libyaml-dev postgresql-common build-essential
echo "*************************************************************************"
echo "Installing test tools for Test::Nginx"
echo "*************************************************************************"
cpanm -n -q Test::Nginx
echo "*************************************************************************"
echo "Installing and configuring Postgres $POSTGRES_VERSION"
echo "*************************************************************************"
set +o errexit
sudo sh /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh
sudo -E apt-get install --allow-unauthenticated -qq postgresql-$POSTGRES_VERSION
if [ $? -ne 0 ]; then
echo "failed to install Postgres!"
exit 1
fi
# Configure Postgres
sudo sed -i "s/#listen_address.*/listen_addresses '*'/" /etc/postgresql/$POSTGRES_VERSION/main/postgresql.conf
sudo bash -c "cat > /etc/postgresql/$POSTGRES_VERSION/main/pg_hba.conf" << EOL
local all all trust
host all all 127.0.0.1/32 trust
host all all ::1/128 trust
host all all 0.0.0.0/0 trust
EOL
sudo systemctl -q enable postgresql
sudo /etc/init.d/postgresql restart
# Create Postgres role and databases
psql -U postgres <<EOF
\x
CREATE ROLE kong;
ALTER ROLE kong WITH login;
CREATE DATABASE kong OWNER kong;
CREATE DATABASE kong_tests OWNER kong;
EOF
psql -d kong -U postgres <<EOF
\x
DROP SCHEMA IF EXISTS public CASCADE;
CREATE SCHEMA IF NOT EXISTS public AUTHORIZATION kong;
GRANT ALL ON SCHEMA public TO kong;
EOF
psql -d kong_tests -U postgres <<EOF
\x
DROP SCHEMA IF EXISTS public CASCADE;
CREATE SCHEMA IF NOT EXISTS public AUTHORIZATION kong;
GRANT ALL ON SCHEMA public TO kong;
EOF
set -o errexit
echo "*************************************************************************"
echo "Installing Redis"
echo "*************************************************************************"
sudo -E apt-get install -qq redis-server
sudo chown vagrant /var/log/redis/redis-server.log
echo "*************************************************************************"
echo "Installing Cassandra $CASSANDRA_VERSION"
echo "*************************************************************************"
set +o errexit
dpkg -f noninteractive --list cassandra > /dev/null 2>&1
if [ $? -ne 0 ]; then
echo "Installing Cassandra"
sudo -E apt-get install -qq --allow-downgrades --allow-remove-essential --allow-change-held-packages cassandra=$CASSANDRA_VERSION
if [ $? -ne 0 ]; then
echo "failed to install Cassandra, might need to bump the version!"
exit 1
fi
sudo /etc/init.d/cassandra restart
fi
set -o errexit
echo "*************************************************************************"
echo "Fetching and installing Kong $KONG_VERSION"
echo "*************************************************************************"
echo $KONG_DOWNLOAD_URL
wget -q -O kong.deb "$KONG_DOWNLOAD_URL"
if [ $KONG_NUM_VERSION -lt 1000 ]; then
sudo -E apt-get install -qq dnsmasq
fi
sudo -E apt-get install -y ./kong.deb
rm kong.deb
if [ -n "$KONG_UTILITIES" ]; then
echo "*************************************************************************"
echo "Installing systemtap, stapxx, and openresty-systemtap-toolkit"
echo "*************************************************************************"
# Install systemtap: https://openresty.org/en/build-systemtap.html
sudo -E apt-get install -qq zlib1g-dev elfutils libdw-dev gettext
wget -q http://sourceware.org/systemtap/ftp/releases/systemtap-4.0.tar.gz
tar -xf systemtap-4.0.tar.gz
pushd systemtap-4.0/
./configure --prefix=/opt/stap --disable-docs \
--disable-publican --disable-refdocs CFLAGS="-g -O2"
make
sudo make install
popd
rm -rf ./systemtap-4.0 systemtap-4.0.tar.gz
# Install stapxx and openresty-systemtap-toolkit
pushd /usr/local
git clone https://github.com/openresty/stapxx.git
git clone https://github.com/openresty/openresty-systemtap-toolkit.git
# Install flamegraph
git clone https://github.com/brendangregg/FlameGraph.git
# Install wrk and copy the binary to a location in PATH
git clone https://github.com/wg/wrk.git
cd wrk && make && sudo cp ./wrk /usr/local/bin/ && cd ..
popd
fi
echo "*************************************************************************"
echo "Installing Go compiler"
echo "*************************************************************************"
pushd /usr/local
wget -q -O go.tar.gz https://golang.org/dl/go1.15.5.linux-amd64.tar.gz
tar -xf go.tar.gz && rm go.tar.gz
popd
echo "*************************************************************************"
echo "Update localization, paths, ulimit, etc."
echo "*************************************************************************"
if [ ! -f /home/vagrant/.bash_profile ]; then
echo "# Kong additions" > /home/vagrant/.bash_profile
fi
echo 'alias ks="kong start -c kong.conf.default"' >> /home/vagrant/.bash_profile
echo 'alias kmu="kong migrations up -c kong.conf.default"' >> /home/vagrant/.bash_profile
echo 'alias kmb="kong migrations bootstrap -c kong.conf.default"' >> /home/vagrant/.bash_profile
echo 'alias kmr="kong migrations reset -c kong.conf.default --yes"' >> /home/vagrant/.bash_profile
echo 'alias kss="kong stop ; ks"' >> /home/vagrant/.bash_profile
export PATH=$PATH:/usr/local/bin:/usr/local/openresty/bin:/opt/stap/bin:/usr/local/stapxx
# Prepare PATH to Lua libraries
ln -sfn /usr/local /home/vagrant/.luarocks
# Set higher ulimit
sudo bash -c 'echo "fs.file-max = 65536" >> /etc/sysctl.conf'
sudo sysctl -p
sudo bash -c "cat >> /etc/security/limits.conf" << EOL
* soft nproc 65535
* hard nproc 65535
* soft nofile 65535
* hard nofile 65535
EOL
# Adjust PATH for future SSH
echo "export PATH=/usr/local/bin:/usr/local/openresty/bin:/opt/stap/bin:/usr/local/stapxx:/usr/local/openresty/nginx/sbin:/usr/local/openresty/luajit/bin:/usr/local/go/bin:\$PATH:" >> /home/vagrant/.bash_profile
# Do the same for root so we access to profiling tools
echo "export PATH=/usr/local/bin:/usr/local/openresty/bin:/opt/stap/bin:/usr/local/stapxx:/usr/local/openresty/nginx/sbin:/usr/local/openresty/luajit/bin:/usr/local/go/bin:\$PATH" >> /root/.bashrc
# Copy host settings
if [ -n "$LOGLEVEL" ]; then
echo "export KONG_LOG_LEVEL=$LOGLEVEL" >> /home/vagrant/.bash_profile
fi
if [ -n "$ANREPORTS" ]; then
echo "export KONG_ANONYMOUS_REPORTS=$ANREPORTS" >> /home/vagrant/.bash_profile
fi
# Create prefix (working directory) to the same location as source tree if available
if [ ! -d "/kong" ]; then
sudo mkdir /kong
sudo chown -R vagrant /kong
fi
echo "export KONG_PREFIX=/kong/servroot" >> /home/vagrant/.bash_profile
# Set admin listen addresses
echo "export KONG_ADMIN_LISTEN=\"$KONG_ADMIN_LISTEN\"" >> /home/vagrant/.bash_profile
if [ -n "$KONG_ADMIN_LISTEN_SSL" ]; then
echo "export KONG_ADMIN_LISTEN_SSL=\"$KONG_ADMIN_LISTEN_SSL\"" >> /home/vagrant/.bash_profile
fi
# Set stream and proxy listen addresses for Kong > 0.15.0
if [ $KONG_NUM_VERSION -ge 001500 ]; then
if [ $KONG_NUM_VERSION -lt 020000 ]; then
echo "export KONG_PROXY_LISTEN=\"$KONG_PROXY_LISTEN\"" >> /home/vagrant/.bash_profile
echo "export KONG_STREAM_LISTEN=\"$KONG_STREAM_LISTEN\"" >> /home/vagrant/.bash_profile
fi
fi
# Adjust LUA_PATH to find the source and plugin dev setup
echo "export LUA_PATH=\"/kong/?.lua;/kong/?/init.lua;/kong-plugin/?.lua;/kong-plugin/?/init.lua;;\"" >> /home/vagrant/.bash_profile
echo "if [ \$((1 + RANDOM % 20)) -eq 1 ]; then kong roar; fi" >> /home/vagrant/.bash_profile
# Set Test::Nginx variables since it cannot have sockets on a mounted drive
echo "export TEST_NGINX_NXSOCK=/tmp" >> /home/vagrant/.bash_profile
# Set locale
echo "export LC_ALL=en_US.UTF-8" >> /home/vagrant/.bash_profile
echo "export LC_CTYPE=en_US.UTF-8" >> /home/vagrant/.bash_profile
# Fix locale warning
sudo echo "LC_CTYPE=\"en_US.UTF-8\"" >> /etc/default/locale
sudo echo "LC_ALL=\"en_US.UTF-8\"" >> /etc/default/locale
# Assign permissions to "vagrant" user
sudo chown -R vagrant /usr/local
if [ $KONG_NUM_VERSION -ge 001500 ]; then
if [ $KONG_NUM_VERSION -lt 020000 ]; then
# Allow non-root to start Kong with transparent flag
# only if version: 0.15.0 <= Kong < 2.0.0
sudo setcap cap_net_admin=eip /usr/local/openresty/nginx/sbin/nginx
fi
fi
# store the Kong version build, and add a warning
echo "export KONG_VERSION_BUILD=$KONG_VERSION" >> /home/vagrant/.bash_profile
echo "if [ -f \"/kong/bin/kong\" ]; then" >> /home/vagrant/.bash_profile
echo " pushd /kong > /dev/null" >> /home/vagrant/.bash_profile
echo " LAST_TAG=\$(git describe --tags)" >> /home/vagrant/.bash_profile
echo " if [ ! \"\$LAST_TAG\" == \"\$KONG_VERSION_BUILD\" ]; then" >> /home/vagrant/.bash_profile
echo " echo \"*******************************************************************************\"" >> /home/vagrant/.bash_profile
echo " echo \" WARNING: The Kong source in /kong has latest tag \$LAST_TAG\"" >> /home/vagrant/.bash_profile
echo " echo \" whilst this vagrant box was build against version \$KONG_VERSION_BUILD.\"" >> /home/vagrant/.bash_profile
echo " echo \" Please make sure the checked-out version in /kong matches the\"" >> /home/vagrant/.bash_profile
echo " echo \" binaries of \$KONG_VERSION_BUILD.\"" >> /home/vagrant/.bash_profile
echo " echo \"*******************************************************************************\"" >> /home/vagrant/.bash_profile
echo " fi" >> /home/vagrant/.bash_profile
echo " popd > /dev/null" >> /home/vagrant/.bash_profile
echo "fi" >> /home/vagrant/.bash_profile
echo .
echo "Successfully Installed Kong version: $KONG_VERSION"