-
Notifications
You must be signed in to change notification settings - Fork 15
/
install.sh
executable file
·457 lines (307 loc) · 14 KB
/
install.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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
#!/bin/bash
# @(#) install.sh - NITA installation script
# Written by us, so that you don't have to
# ------------------------------------------------------------------------------
# Define functions and variables
ME="${0##*/}" # This scripts name
HOST=`uname -n`
REALUSER="${SUDO_USER:-${USER}}" # User behind sudo
bold=$(tput bold) # For echo emphasis
normal=$(tput sgr0)
PATH=${PATH:="/bin:/usr/bin:/usr/sbin"} # Set out base path from the parent
# Define recommended values (in GB)
RECOMMENDED_MEMORY=8 # Recommended memory
RECOMMENDED_DISK=20 # Recommended free disk space
# Note: Set IGNORE_WARNINGS to true to continue regardless
# Set these env vars or take them from the calling shell
NITAROOT=${NITAROOT:=/opt} # Where to install NITA
NITAPROJECT=${NITAPROJECT:=/var/nita_project} # Home of NITA project files
BINDIR=${BINDIR:=/usr/local/bin} # Where to put binaries
BASH_COMPLETION=${BASH_COMPLETION:="/etc/bash_completion.d"}
JAVA_HOME=${JAVA_HOME:=$NITAROOT/jdk-19.0.1}
K8SROOT=${K8SROOT:=$NITAROOT/nita/k8s}
PROXY=${PROXY:=$K8SROOT/proxy}
CERTS=${CERTS:=$PROXY/certificates}
JENKINS=${JENKINS:=/var/jenkins_home}
KEYPASS=${KEYPASS:="nita123"}
KUBEROOT=${KUBEROOT:=/etc/kubernetes}
KUBECONFIG=${KUBECONFIG:=$KUBEROOT/admin.conf}
PATH=${PATH}:${JAVA_HOME}/bin
export OWNER_HOME=`egrep "^${REALUSER}" /etc/passwd | awk -F: '{print $6}'`
export PATH NITAROOT KUBEROOT K8SROOT PROXY CERTS JENKINS KEYPASS KUBECONFIG JAVA_HOME
Question () {
# Ask a yes/no/quit question. Default answer is "No"
echo -n "$1 (y|n|q)? [n] "
read ANSWER
ANSWER=${ANSWER:="n"}
[ "X$ANSWER" = "Xy" ] || [ "X$ANSWER" = "XY" ] && {
return 0
}
[ "X$ANSWER" = "Xq" ] || [ "X$ANSWER" = "XQ" ] && {
echo "Goodbye!"
exit 0
}
return 1
}
Verify() {
# Check that a named file exists
if [ ! -x "$(command -v $1)" ]; then
echo "Error: Cannot find command \"$1\"."
exit 1
else
Debug "echo $1 exists"
fi
}
Debug() {
# Execute debug commands if DEBUG is set in the shell
[ ${DEBUG} ] && {
echo "${ME}: DEBUG: $*" >&2
eval "$*" >&2
}
return $?
}
# ------------------------------------------------------------------------------
# Check the user and the environment we are running on
echo "${ME}: NITA install script."
[ "X$EUID" != "X0" ] && {
# Check that our effective user is root
echo "Error: To install system software this script must be run as root or \"sudo -E\""
exit 1
}
Debug "echo $PATH"
Debug "echo $NITAROOT $KUBEROOT $K8SROOT $PROXY $CERTS $JENKINS $KEYPASS $KUBECONFIG $JAVA_HOME"
ARCH=`uname -m`
MEM=`free -g | grep Mem | awk '{print $2}'`
DISK=`df --block-size=G --output='avail' /var | sed 1d | sed 's/.$//'`
OS=`hostnamectl | grep "Operating System" | awk '{print $3}'`
Debug "echo The OS is ${OS}"
Debug "echo The CPU architecture is ${ARCH}"
Debug "echo Free memory is ${MEM}GB"
Debug "echo Free disk space is ${DISK}GB"
case "${OS}" in
AlmaLinux)
INSTALLER="dnf install -y"
UPDATE="dnf update -y"
;;
Ubuntu)
INSTALLER="apt install -y"
UPDATE="apt update -y"
;;
*)
echo "Warning: OS \"${OS}\" is untested."
[ ! ${IGNORE_WARNINGS} ] && exit
;;
esac
[ "X${ARCH}" != "Xx86_64" ] && {
echo "Warning: NITA has not been tested on this architecture"
[ ! ${IGNORE_WARNINGS} ] && exit
}
[[ "${MEM}" -lt ${RECOMMENDED_MEMORY} ]] && {
echo "Warning: Available memory is below recommended amount of ${RECOMMENDED_MEMORY}GB"
[ ! ${IGNORE_WARNINGS} ] && exit
}
[[ "${DISK}" -lt ${RECOMMENDED_DISK} ]] && {
echo "Warning: Available storage space is below recommended amount of ${RECOMMENDED_DISK}GB"
[ ! ${IGNORE_WARNINGS} ] && exit
}
# ------------------------------------------------------------------------------
# Main part of the script
Question "Install system dependencies" && {
# Update system packages and install our dependencies
eval "${UPDATE}"
eval "${INSTALLER} ca-certificates curl wget gnupg gnupg2"
[ "X${OS}" = "XAlmaLinux" ] && {
dnf config-manager -y --add-repo=https://download.docker.com/linux/centos/docker-ce.repo
# The Java Dev Kit is needed for keytool, to generate keystores
if [ ! -x "$(command -v keytool)" ]; then
echo "${ME}: Couldn't find \"keytool\" in your path, so downloading jdk to install it"
wget https://download.java.net/java/GA/jdk19.0.1/afdd2e245b014143b62ccb916125e3ce/10/GPL/openjdk-19.0.1_linux-x64_bin.tar.gz --no-check-certificate
tar xf openjdk-19.0.1_linux-x64_bin.tar.gz
mv jdk-19.0.1 ${NITAROOT}
rm -f openjdk-19.0.1_linux-x64_bin.tar.gz
tee /etc/profile.d/jdk19.sh <<-EOF1
export JAVA_HOME=${NITAROOT}/jdk-19.0.1
export PATH=${PATH}:${JAVA_HOME}/bin
EOF1
echo "[ -f /etc/profile.d/jdk19.sh ] && source /etc/profile.d/jdk19.sh" >> ${OWNER_HOME}/.bashrc
else
echo "${ME}: Cool, you already have keytool installed"
fi
java -version
}
[ "X${OS}" = "XUbuntu" ] && {
eval "${INSTALLER} lsb-release"
eval "${INSTALLER} software-properties-common apt-transport-https"
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list
eval "${INSTALLER} openjdk-19-jre-headless"
}
mkdir -p /usr/share/keyrings
eval "${UPDATE}"
eval "${INSTALLER} containerd.io"
eval "${INSTALLER} git"
eval "${INSTALLER} socat"
eval "${INSTALLER} jq"
eval "${INSTALLER} unzip"
mkdir -p /etc/containerd/
containerd config default | tee /etc/containerd/config.toml >/dev/null 2>&1
sed -i 's/SystemdCgroup \= false/SystemdCgroup \= true/g' /etc/containerd/config.toml
systemctl restart containerd
systemctl enable containerd
}
# ------------------------------------------------------------------------------
Question "Install Kubernetes" && {
# Disable use of swap space
swapoff -a
sed -i '/swap/ s/^\(.*\)$/#\1/g' /etc/fstab
[ ! -d ${KUBEROOT} ] && mkdir -p ${KUBEROOT}
echo "${ME}: Adding k8s to sysctl.d"
tee /etc/sysctl.d/kubernetes.conf <<-EOF2
net.bridge.bridge-nf-call-ip6tables = 1
net.bridge.bridge-nf-call-iptables = 1
net.ipv4.ip_forward = 1
EOF2
echo "${ME}: Adding overlay network and bridge netfilter"
modprobe overlay
modprobe br_netfilter
tee /etc/modules-load.d/k8s.conf <<-EOF3
overlay
br_netfilter
EOF3
sysctl --system >>/dev/null 2>&1
if [ ! -x "$(command -v kubectl)" ]; then
echo "${ME}: Couldn't find \"kubectl\" in your path, so installing it"
mkdir -p /etc/apt/keyrings
[ "X${OS}" = "XAlmaLinux" ] && {
setenforce 0
sudo sed -i 's/^SELINUX=enforcing$/SELINUX=permissive/' /etc/selinux/config
tee /etc/yum.repos.d/kubernetes.repo <<-EOF2
[kubernetes]
name=Kubernetes
baseurl=https://pkgs.k8s.io/core:/stable:/v1.28/rpm/
enabled=1
gpgcheck=1
gpgkey=https://pkgs.k8s.io/core:/stable:/v1.28/rpm/repodata/repomd.xml.key
exclude=kubelet kubeadm kubectl cri-tools kubernetes-cni
EOF2
eval "${INSTALLER} kubelet kubeadm kubectl --disableexcludes=kubernetes"
}
[ "X${OS}" = "XUbuntu" ] && {
curl -fsSL https://pkgs.k8s.io/core:/stable:/v1.28/deb/Release.key | gpg --dearmor -o /etc/apt/keyrings/kubernetes-apt-keyring.gpg
echo 'deb [signed-by=/etc/apt/keyrings/kubernetes-apt-keyring.gpg] https://pkgs.k8s.io/core:/stable:/v1.28/deb/ /' | tee /etc/apt/sources.list.d/kubernetes.list
eval "${UPDATE}"
eval "${INSTALLER} kubelet kubeadm kubectl"
apt-mark hold kubelet kubeadm kubectl
}
else
echo "${ME}: \"kubectl\" is already installed on this machine"
fi
}
# ------------------------------------------------------------------------------
Question "Initialise Kubernetes cluster" && {
kubeadm init --control-plane-endpoint="localhost" --ignore-preflight-errors=NumCPU
# And export kubeconfig for now, before we run kubectl...
export KUBECONFIG=${KUBEROOT}/admin.conf
echo "${ME}: Warning: Make sure KUBECONFIG is always set in your shell."
echo "${ME}: Warning: If Kubernetes fails, that is probably why."
# Some status information on the cluster
Debug "kubectl cluster-info"
Debug "kubectl version --client"
Debug "kubectl get ns"
systemctl enable kubelet.service
[ "X${OS}" = "XAlmaLinux" ] && {
echo "${ME}: Applying firewall rules"
# Alma will probably have the firewall enabled
FIREWALL_STATE=`firewall-cmd --state`
Debug "echo Firewall state is ${FIREWALL_STATE}"
[ "X${FIREWALL_STATE}" == "Xrunning" ] && {
firewall-cmd --permanent --add-port=6443/tcp
firewall-cmd --permanent --add-port=10250/tcp
firewall-cmd --reload
}
}
[ "X${OS}" = "XUbuntu" ] && {
Debug "ufw status"
}
kubectl taint nodes --all node-role.kubernetes.io/master-
kubectl taint nodes --all node-role.kubernetes.io/control-plane-
kubectl apply -f https://raw.githubusercontent.com/projectcalico/calico/v3.26.0/manifests/calico.yaml
}
# ------------------------------------------------------------------------------
Question "Install NITA repositories" && {
mkdir -p ${BINDIR}
NITA_REPOS="nita nita-ansible nita-jenkins nita-robot nita-webapp"
for REPO in ${NITA_REPOS}; do
# Note: git won't clone into an existing directory
# but we check anway and avoid pre-existing
if [ ! -d ${NITAROOT}/${REPO} ]; then
echo "${ME}: Cloning fresh repository: ${REPO}"
git clone https://github.com/Juniper/${REPO}.git ${NITAROOT}/${REPO}
# Make symbolic links for nita cli scripts...
find ${NITAROOT}/${REPO}/cli_scripts -type f -name "nita-cmd*" -exec ln -s {} ${BINDIR} \;
chmod 755 ${NITAROOT}/${REPO}/cli_scripts/nita-cmd*
else
echo "${ME}: Warning: Directory already exists: \"${NITAROOT}/${REPO}\". Skipping."
fi
done
echo "${ME}: Executing NITA post-install scripts"
NITACMD="${NITAROOT}/nita-webapp/nita-cmd"
[ -d ${NITACMD} ] && {
# Set up nita-cmd
install -m 755 ${NITACMD}/cli_runner ${BINDIR}/nita-cmd
install -m 644 ${NITACMD}/bash_completion.d/cli_runner_completions ${BASH_COMPLETION}/cli_runner_completions
install -m 644 ${NITACMD}/bash_completion.d/nita-cmd ${BASH_COMPLETION}/nita-cmd
}
echo "${ME}: Making ${NITAPROJECT}"
mkdir -p ${NITAPROJECT}
cd ${K8SROOT}
bash apply-k8s.sh
mkdir -p ${NITAROOT}/nita/k8s/proxy
wget --inet4-only https://raw.githubusercontent.com/Juniper/nita-webapp/main/nginx/nginx.conf -O ${PROXY}/nginx.conf
# ln -s ${NITAROOT}/nita/k8s/proxy ${PROXY}/nginx.conf
Debug "kubectl get nodes -o wide"
Debug "kubectl get pods -n nita"
echo "${ME}: Generating nginx certificates."
mkdir -p ${CERTS}
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout ${CERTS}/nginx-certificate-key.key -out ${CERTS}/nginx-certificate.crt
echo "${ME}: Creating config maps for proxy pod"
kubectl create cm proxy-config-cm --from-file=${PROXY}/nginx.conf --namespace nita
kubectl create cm proxy-cert-cm --from-file=${CERTS}/ --namespace nita
echo "${ME}: Generating Jenkins keystore."
Debug "echo In ${JENKINS}"
# Note that keys and certs must be stored in the same directory as is referenced in the YAML configs
mkdir -p ${JENKINS}
Verify keytool
keytool -genkey -keyalg RSA -alias selfsigned -keystore ${JENKINS}/jenkins_keystore.jks -keypass ${KEYPASS} -keysize 4096 -dname "cn=jenkins, ou=, o=, l=, st=, c=" -storepass ${KEYPASS} -srckeypass ${KEYPASS}
keytool -importkeystore -srckeystore ${JENKINS}/jenkins_keystore.jks -destkeystore ${JENKINS}/jenkins.p12 -deststoretype PKCS12 -deststorepass ${KEYPASS} -srcstorepass ${KEYPASS}
echo "${ME}: Converting Jenkins keystore to certificate"
openssl pkcs12 -in ${JENKINS}/jenkins.p12 -nokeys -out ${JENKINS}/jenkins.crt -password pass:${KEYPASS}
echo "${ME}: Creating config maps for Jenkins pod"
kubectl create cm jenkins-crt --from-file=${JENKINS}/jenkins.crt --namespace nita
kubectl create cm jenkins-keystore --from-file=${JENKINS}/jenkins_keystore.jks --namespace nita
echo "${ME}: Please wait ${bold}5-10 minutes${normal} for the Kubernetes pods to initialise"
Debug "kubectl get cm"
Debug "kubectl describe cm"
Debug "kubectl get ns nita"
# Finally, copy the K8S admin file to the local user and set ownership and update bashrc
echo "${ME}: Creating a local ${OWNER_HOME}/.kube"
mkdir -p ${OWNER_HOME}/.kube
cp -i ${KUBEROOT}/admin.conf ${OWNER_HOME}/.kube/config
chown -R $(id -u ${REALUSER}):$(id -g ${REALUSER}) ${OWNER_HOME}/.kube/
echo "export PATH=\${PATH}:/usr/local/bin" >> ${OWNER_HOME}/.bashrc
echo "export KUBECONFIG=${OWNER_HOME}/.kube/config" >> ${OWNER_HOME}/.bashrc
echo "${ME}: Now ${bold}source your bashrc file${normal} to set KUBECONFIG in your shell"
}
Question "Do you want to run Ansible as a standalone Docker container" && {
# Running standalone Ansible containers requires docker
eval "${INSTALLER} docker-ce"
# This step will avoid the need to be a sudoer
echo "${ME}: Adding user \"${REALUSER}\" to the docker group"
usermod -aG docker ${REALUSER}
}
Debug "ls -al ${NITAROOT}"
echo "${ME}: NITA installation has finished."
echo ""
echo "${ME}: Remember to ${bold}source your bashrc file${normal} to set KUBECONFIG in your shell"
echo "${ME}: You can access the NITA webapp at https://${HOST}:443"
echo "${ME}: You can access the Jenkins UI at https://${HOST}:8443"