-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall_k3d_kubernetes_cluster.sh.disable
executable file
·450 lines (403 loc) · 12 KB
/
install_k3d_kubernetes_cluster.sh.disable
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
#!/bin/bash
# k3d K8s Cluster
# Check if docker is running
if ! docker info >/dev/null 2>&1; then
echo "Docker is not running."
exit 0
fi
if [ "$1" != "example.com" ]; then
LETS_ENCRYPT_SERVER="https://acme-staging-v02.api.letsencrypt.org/directory"
if [ "$#" -ne 3 ]; then
echo "Usage: ./install_k3d_kubernetes_cluster.sh domain [email]"
exit 0
else
DOMAIN_NAME=$1
LESERVER=$2
regex="^[a-z0-9!#\$%&'*+/=?^_\`{|}~-]+(\.[a-z0-9!#$%&'*+/=?^_\`{|}~-]+)*@([a-z0-9]([a-z0-9-]*[a-z0-9])?\.)+[a-z0-9]([a-z0-9-]*[a-z0-9])?\$"
EMAIL=$3
if [[ $LESERVER == "prd" ]] ; then
LETS_ENCRYPT_SERVER="https://acme-v02.api.letsencrypt.org/directory"
fi
if ! [[ $EMAIL =~ $regex ]] ; then
echo "Usage: ./install_k3d_kubernetes_cluster.sh [domain] [env] [email]"
exit 0
fi
fi
else
DOMAIN_NAME=$1
fi
# Install the latest version of k3d
echo "**** Installing k3d Kubernetes"
if ! command -v k3d &> /dev/null; then
curl -s https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | bash
fi
echo "**** Deleting old cluster, if it already exists"
k3d cluster delete local
echo "**** Deleting old registry, if it already exists"
k3d registry delete --all
# Check if HTTP and HTTPS ports are in use
if [[ "$OSTYPE" == "darwin"* ]]; then
if [ ! -z "$(netstat -anvp tcp | awk 'NR<3 || /LISTEN/' | awk '{print $4}' | grep -E '80|443')" ]; then
echo "Ports HTTP/HTTPS in use. Please check."
fi
else
if [ ! -z "$(ss -tulpn | grep LISTEN | grep '0.0.0.0' | grep -E '80|443')" ]; then
echo "Ports HTTP/HTTPS in use. Please check."
fi
fi
# Setting variables
echo "**** Exporting CLUSTER_NAME=local"
export CLUSTER_NAME=local
# Installation
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
echo "**** Setting sysconfig for linux system"
sudo sysctl -w net.netfilter.nf_conntrack_max=131072
elif [[ "$OSTYPE" == "darwin"* ]]; then
echo "**** Proceeding with macOS setup"
else
echo "**** Configuration for this OS is not available"
exit 0;
fi
if [[ "$OSTYPE" == "darwin"* ]]; then
if ! command -v brew &> /dev/null; then
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
fi
# Install kubectl
if ! command -v kubectl &> /dev/null; then
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
sudo curl -L "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" -o /usr/local/bin/kubectl 2> /dev/null && sudo chmod +x /usr/local/bin/kubectl
elif [[ "$OSTYPE" == "darwin"* ]]; then
brew install kubernetes-cli
fi
fi
echo "**** Creating new k3d cluster"
KUBECONFIG=$HOME/.kube/config \
k3d cluster create $CLUSTER_NAME \
--agents 2 \
--registry-create local.registry:0.0.0.0:5001 \
--kubeconfig-update-default \
--kubeconfig-switch-context \
--api-port 4040 \
--k3s-node-label "ingress-ready=true@agent:0" \
--k3s-node-label "ingress-ready=true@agent:1" \
--k3s-arg "--disable=traefik@server:0" \
--k3s-arg "--disable=servicelb@server:0" \
-p "4041:80@loadbalancer" \
-p "4043:443@loadbalancer"
echo "**** Adding local.registry to /etc/hosts"
if grep -q "local.registry" /etc/hosts; then
echo "Host local.registry already exists on /etc/hosts"
else
sudo sh -c "echo '127.0.0.1 local.registry' >> /etc/hosts"
fi
echo "**** Sleep for 10 secs"
sleep 10
echo "**** Wait for control-plane node to be ready"
kubectl wait \
--for=condition=ready node \
--selector=kubernetes.io/hostname=k3d-$DOMAIN_NAME-agent-0 \
--timeout=300s
echo "**** Wait for local path provisioner to be ready"
kubectl wait --namespace kube-system \
--for=condition=ready pod \
--selector=app=local-path-provisioner \
--timeout=300s
echo "**** Wait for coredns to be ready"
kubectl wait --namespace kube-system \
--for=condition=ready pod \
--selector=k8s-app=kube-dns \
--timeout=300s
echo "**** Wait for metrics-server to be ready"
kubectl wait --namespace kube-system \
--for=condition=ready pod \
--selector=k8s-app=metrics-server \
--timeout=300s
echo "**** Install cert-manager"
kubectl create namespace cert-manager
kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.12.2/cert-manager.yaml
echo "**** Sleep for 5 secs"
sleep 5
echo "**** Wait for certificate manager controller to be ready"
kubectl wait --namespace cert-manager \
--for=condition=ready pod \
--selector=app.kubernetes.io/component=controller \
--timeout=300s
echo "**** Wait for certificate manager webhook to be ready"
kubectl wait --namespace cert-manager \
--for=condition=ready pod \
--selector=app.kubernetes.io/component=webhook \
--timeout=300s
echo "**** Install local certificate"
if [ "$DOMAIN_NAME" == "example.com" ]; then
echo "**** Clonning certificate repo"
git clone https://github.com/gespinal/ssl-wildcard-certificate-self-ca.git
echo "**** Creating certificate for $DOMAIN_NAME domain"
cd ssl-wildcard-certificate-self-ca
./create_certificate.sh $DOMAIN_NAME
cd ../
echo "**** Create certificate secret for default namespace"
kubectl create secret generic example \
--from-file=tls.crt=./ssl-wildcard-certificate-self-ca/certs/$DOMAIN_NAME-CERT.pem \
--from-file=tls.key=./ssl-wildcard-certificate-self-ca/certs/$DOMAIN_NAME.key
else
echo "**** Certificate manager - create issuer"
cat <<EOF | kubectl apply -f -
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: letsencrypt-cluster-issuer
spec:
acme:
server: $LETS_ENCRYPT_SERVER
email: $EMAIL
privateKeySecretRef:
name: letsencrypt-cluster-issuer-key
solvers:
- http01:
ingress:
class: nginx
EOF
fi
echo "**** Install MetalLB"
kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.10.3/manifests/namespace.yaml
kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.10.3/manifests/metallb.yaml
echo "**** Sleep for 5 secs"
sleep 5
echo "**** Wait fot metallb load balancer to be ready"
kubectl wait --namespace metallb-system \
--for=condition=ready pod \
--selector=app=metallb \
--timeout=90s
echo "**** Get metal lb cidr range"
cidr_block=$(docker network inspect k3d-$CLUSTER_NAME | jq '.[0].IPAM.Config[0].Subnet' | tr -d '"')
base_addr=${cidr_block%???}
first_addr=$(echo $base_addr | awk -F'.' '{print $1,$2,$3,240}' OFS='.')
range=$first_addr/29
echo "**** Configure IP address pool for metallb load balancer"
cat <<EOF | kubectl apply -f -
apiVersion: v1
kind: ConfigMap
metadata:
namespace: metallb-system
name: config
data:
config: |
address-pools:
- name: default
protocol: layer2
addresses:
- $range
EOF
echo "**** Install nginx ingress controller"
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.4/deploy/static/provider/aws/deploy.yaml
echo "**** Wait for ingress controller to be ready"
kubectl wait --namespace ingress-nginx \
--for=condition=ready pod \
--selector=app.kubernetes.io/component=controller \
--timeout=300s
echo "**** Test registry"
docker pull docker.io/nginxdemos/hello:plain-text
docker tag docker.io/nginxdemos/hello:plain-text local.registry:5001/hello:latest
docker push local.registry:5001/hello:latest
echo "**** Test registry - create deployment"
kubectl create deployment hello --image=local.registry:5001/hello:latest
echo "**** Create hello service"
cat <<EOF | kubectl apply -f -
apiVersion: v1
kind: Service
metadata:
name: hello
spec:
type: ClusterIP
selector:
app: hello
ports:
- protocol: TCP
port: 80
targetPort: 80
EOF
echo "**** Create hello certificate"
if [ "$DOMAIN_NAME" != "example.com" ]; then
SECRET_NAME=hello.$DOMAIN_NAME-tls
kubectl apply -f - <<EOF
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: hello-cert
namespace: default
spec:
dnsNames:
- hello.$DOMAIN_NAME
secretName: $SECRET_NAME
issuerRef:
name: letsencrypt-cluster-issuer
kind: ClusterIssuer
EOF
else
SECRET_NAME=example
fi
echo "**** Create hello ingress"
if [ "$DOMAIN_NAME" != "example.com" ]; then
cat <<EOF | kubectl apply -f -
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: hello
annotations:
kubernetes.io/ingress.class: nginx
cert-manager.io/cluster-issuer: letsencrypt-cluster-issuer
spec:
ingressClassName: nginx
tls:
- hosts:
- hello.$DOMAIN_NAME
secretName: $SECRET_NAME
rules:
- host: hello.$DOMAIN_NAME
http:
paths:
- pathType: prefix
path: /
backend:
service:
name: hello
port:
number: 80
EOF
else
cat <<EOF | kubectl apply -f -
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: hello
annotations:
spec:
ingressClassName: nginx
tls:
- hosts:
- hello.$DOMAIN_NAME
secretName: $SECRET_NAME
rules:
- host: hello.$DOMAIN_NAME
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: hello
port:
number: 80
EOF
fi
echo "**** Wait for hello pod to be ready"
kubectl wait \
--for=condition=ready pod \
--selector=app=hello\
--timeout=300s
echo "**** Get Ingress IP from host"
CONTROL_PLANE_IP=$(docker container inspect ${CLUSTER_NAME}-control-plane --format '{{ .NetworkSettings.Networks.kind.dddress }}')
echo "**** Install Argo CD"
kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
kubectl patch svc argocd-server -n argocd -p '{"spec": {"type": "LoadBalancer"}}'
echo "**** Wait for Argo CD server to be ready"
kubectl wait --namespace argocd\
--for=condition=ready pod \
--selector=app.kubernetes.io/name=argocd-server \
--timeout=300s
echo "**** Create Argo CD certificate"
if [ "$DOMAIN_NAME" != "example.com" ]; then
SECRET_NAME=argo.$DOMAIN_NAME-tls
kubectl apply -f - <<EOF
apiVersion: argo-manager.io/v1
kind: Certificate
metadata:
name: argo-cert
namespace: argocd
spec:
dnsNames:
- argo.$DOMAIN_NAME
secretName: $SECRET_NAME
issuerRef:
name: letsencrypt-cluster-issuer
kind: ClusterIssuer
EOF
else
SECRET_NAME=example
fi
echo "**** Create Argo CD ingress"
if [ "$DOMAIN_NAME" != "example.com" ]; then
cat <<EOF | kubectl apply -f -
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: argo
namespace: argocd
annotations:
cert-manager.io/cluster-issuer: letsencrypt-cluster-issuer
spec:
spec:
ingressClassName: nginx
tls:
- hosts:
- hello.$DOMAIN_NAME
secretName: $SECRET_NAME
- host: argo.$DOMAIN_NAME
http:
paths:
- pathType: prefix
path: /
backend:
service:
name: argocd-server
port:
number: 80
EOF
else
cat <<EOF | kubectl apply -f -
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: argo
namespace: argocd
annotations:
cert-manager.io/cluster-issuer: letsencrypt-cluster-issuer
spec:
ingressClassName: nginx
tls:
- hosts:
- argo.$DOMAIN_NAME
secretName: $SECRET_NAME
rules:
- host: argo.$DOMAIN_NAME
http:
paths:
- pathType: Prefix
path: /
backend:
service:
name: argocd-server
port:
number: 80
EOF
fi
echo "**** Update Argo CD password"
kubectl -n argocd patch secret argocd-secret \
-p '{"stringData": {
"admin.password": "$2a$10$rRyBsGSHK6.uc8fntPwVIuLVHgsAhAX7TcdrqW/RADU0uh7CaChLa",
"admin.passwordMtime": "'$(date +%FT%T%Z)'"
}}'
echo "**** Login to Argo CD"
argocd login --username admin --password password argo.$DOMAIN_NAME
if [ "$DOMAIN_NAME" == "example.com" ]; then
echo "**** Adding hello.$DOMAIN_NAME and argo.$DOMAIN_NAME to /etc/hosts"
if grep -q "argo.$DOMAIN_NAME" /etc/hosts; then
echo "Host entries already exists on /etc/hosts"
else
sudo sh -c "echo '127.0.0.1 hello.$DOMAIN_NAME argo.$DOMAIN_NAME' >> /etc/hosts"
fi
fi
echo "**** k3d k8s cluster created"
echo "kubectl cluster-info"