-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmain.bash
1581 lines (1293 loc) · 59.2 KB
/
main.bash
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
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/bin/bash
set -o errexit
set -o nounset
set -o pipefail
# PRESEED CONFIG: /machineConfigs/servers/preseed.cfg
# ANSIBLE CONFIG: /ansible/k3s.yaml
BLUE='\033[1;34m'
NC='\033[0m'
# https://www.how2shout.com/linux/how-to-install-and-configure-kvm-on-debian-11-bullseye-linux/
export LIBVIRT_DEFAULT_URI=qemu:///system
export SWAP_PATH=${SWAP_PATH:-"/home/swapfile.img"}
# HomeLab Functions
function retry {
local retries=$1
shift
local count=0
until "$@"; do
exit=$?
wait=$((15 + 5 ** count))
count=$((count + 1))
if [ $count -lt "$retries" ]; then
echo "Retry $count/$retries exited $exit, retrying in $wait seconds..."
sleep $wait
else
echo "Retry $count/$retries exited $exit, no more retries left."
return $exit
fi
done
return 0
}
ansible() {
ansible-playbook -i ansible/inventory --ask-become-pass ansible/servers.yaml --ask-pass \
-e 'ansible_python_interpreter=/usr/bin/python3'
}
test_overlays() {
if [ -n "$VAULT_ADDR" ] && [ -n "$VAULT_TOKEN" ]; then
DIR="/tmp/yaml"
rm -rf /tmp/yaml
mkdir -p /tmp/yaml
echo "Build Yaml's"
for OVERLAY in ./kubernetes/*/overlays/okd; do # *
echo "${OVERLAY}"
OUTPUT=$(echo "${OVERLAY}" | sed 's/\.//g' | sed 's/\//_/g')
kubectl kustomize "${OVERLAY}" | argocd-vault-plugin generate - >"${DIR}/${OUTPUT}.yaml"
done
for OVERLAY in ./kubernetes/*/overlays/microshift; do # *
echo "${OVERLAY}"
OUTPUT=$(echo "${OVERLAY}" | sed 's/\.//g' | sed 's/\//_/g')
kubectl kustomize "${OVERLAY}" | argocd-vault-plugin generate - >"${DIR}/${OUTPUT}.yaml"
done
for OVERLAY in ./okd/*/overlays/*; do
echo "${OVERLAY}"
OUTPUT=$(echo "${OVERLAY}" | sed 's/\.//g' | sed 's/\//_/g')
kubectl kustomize "${OVERLAY}" | argocd-vault-plugin generate - >"${DIR}/${OUTPUT}.yaml"
done
for OVERLAY in ./tekton/overlays/*; do
echo "${OVERLAY}"
OUTPUT=$(echo "${OVERLAY}" | sed 's/\.//g' | sed 's/\//_/g')
kubectl kustomize "${OVERLAY}" | argocd-vault-plugin generate - >"${DIR}/${OUTPUT}.yaml"
done
echo "Run KubeConform on Yaml's"
# -ignore-missing-schemas # -debug
kubeconform -n 16 -verbose --summary -strict \
-schema-location="../kubernetes-json-schema/custom-standalone-strict/{{.ResourceKind}}-{{.Group}}-{{.ResourceAPIVersion}}.json" \
-schema-location '../kubernetes-json-schema/master-standalone-strict/{{.ResourceKind}}{{.KindSuffix}}.json' \
-schema-location "../kubernetes-json-schema/master-local/{{.ResourceKind}}.json" \
-output text "${DIR}" | grep -v "is valid"
else
echo "Vault Variables Missing"
exit 1
fi
}
test_overlays_k3s() {
if [ -n "$VAULT_ADDR" ] && [ -n "$VAULT_TOKEN" ]; then
DIR="/tmp/yaml"
rm -rf /tmp/yaml
mkdir -p /tmp/yaml
echo "Build Yaml's"
for OVERLAY in ./kubernetes/*/overlays/k3s; do # *
echo "${OVERLAY}"
OUTPUT=$(echo "${OVERLAY}" | sed 's/\.//g' | sed 's/\//_/g')
kubectl kustomize "${OVERLAY}" | argocd-vault-plugin generate - >"${DIR}/${OUTPUT}.yaml"
done
echo "Run KubeConform on Yaml's"
kubeconform -n 16 -verbose --summary -ignore-missing-schemas \
-schema-location="../kubernetes-json-schema/master-standalone-strict/{{.ResourceKind}}{{.KindSuffix}}.json" \
-output text "${DIR}" | grep -v "is valid"
else
echo "Vault Variables Missing"
exit 1
fi
}
stateful_workload_stop() {
kubectl patch cronjobs -n netbox netbox-housekeeping -p '{"spec" : {"suspend" : true }}'
kubectl patch cronjobs -n photoprism photoprism-cron -p '{"spec" : {"suspend" : true }}'
kubectl patch cronjobs -n nextcloud nextcloud-preview -p '{"spec" : {"suspend" : true }}'
kubectl patch cronjobs -n nextcloud nextcloud-rsync -p '{"spec" : {"suspend" : true }}'
kubectl patch cronjobs -n nextcloud nextcloud-cron -p '{"spec" : {"suspend" : true }}'
kubectl patch cronjobs -n mariadb-galera mysqldump-cron -p '{"spec" : {"suspend" : true }}'
kubectl scale --replicas=0 -n openshift-monitoring deployment/cluster-monitoring-operator
kubectl scale --replicas=0 -n openshift-monitoring deployment/prometheus-operator
kubectl scale --replicas=0 -n openshift-monitoring statefulset/alertmanager-main
kubectl scale --replicas=0 -n openshift-monitoring statefulset/prometheus-k8s
kubectl scale --replicas=0 -n openshift-user-workload-monitoring deployment/prometheus-operator
kubectl scale --replicas=0 -n openshift-user-workload-monitoring statefulset/alertmanager-user-workload
kubectl scale --replicas=0 -n openshift-user-workload-monitoring statefulset/prometheus-user-workload
kubectl scale --replicas=0 -n openshift-user-workload-monitoring statefulset/thanos-ruler-user-workload
kubectl scale --replicas=0 -n bitwarden statefulset/bitwarden
kubectl scale --replicas=0 -n gitea deployment/gitea
kubectl scale --replicas=0 -n grafana deployment/grafana
kubectl scale --replicas=0 -n heimdall statefulset/heimdall
kubectl scale --replicas=0 -n homeassistant statefulset/homeassistant
kubectl scale --replicas=0 -n influxdb statefulset/influxdb
kubectl scale --replicas=0 -n loki statefulset/loki
kubectl scale --replicas=0 -n mariadb-galera statefulset/mariadb-galera
kubectl scale --replicas=0 -n nextcloud deployment/nextcloud
kubectl scale --replicas=0 -n photoprism statefulset/photoprism
kubectl scale --replicas=0 -n prometheus statefulset/prometheus
kubectl scale --replicas=0 -n prometheus statefulset/thanos-store-gateway
kubectl scale --replicas=0 -n prometheus statefulset/prometheus-truenas
kubectl scale --replicas=0 -n prometheus statefulset/thanos-truenas-store-gateway
kubectl scale --replicas=0 -n uptime-kuma statefulset/uptime-kuma
kubectl scale --replicas=0 -n vault statefulset/vault
kubectl scale --replicas=0 -n zitadel statefulset/pihole
#kubectl scale --replicas=0 -n minio-operator deployment/minio-operator
kubectl scale --replicas=0 -n quay deployment/quay-operator-tng
kubectl scale --replicas=0 -n quay deployment/quay-quay-app
kubectl scale --replicas=0 -n quay deployment/quay-clair-app
kubectl scale --replicas=0 -n quay deployment/quay-quay-mirror
kubectl scale --replicas=0 -n cockroach-operator-system deployments/cockroach-operator-manager
kubectl scale --replicas=0 -n zitadel statefulset/crdb
kubectl scale --replicas=0 -n zitadel deployment/zitadel
kubectl scale --replicas=0 -n mongodb-operator deployments/mongodb-kubernetes-operator
kubectl scale --replicas=0 -n unifi-network-application statefulset/unifi-network-application
kubectl scale --replicas=0 -n unifi-network-application statefulset/mongo-unifi-network-application
kubectl patch postgresCluster clair -n quay --type=merge -p '{"spec":{"shutdown":true}}'
kubectl patch postgresCluster gitea -n gitea --type=merge -p '{"spec":{"shutdown":true}}'
kubectl patch postgresCluster grafana -n postgres --type=merge -p '{"spec":{"shutdown":true}}'
kubectl patch postgresCluster homeassistant -n homeassistant --type=merge -p '{"spec":{"shutdown":true}}'
kubectl patch postgresCluster nextcloud -n nextcloud --type=merge -p '{"spec":{"shutdown":true}}'
kubectl patch postgresCluster photoprism -n postgres --type=merge -p '{"spec":{"shutdown":true}}'
kubectl patch postgresCluster stackrox -n stackrox --type=merge -p '{"spec":{"shutdown":true}}'
kubectl patch postgresCluster quay -n quay --type=merge -p '{"spec":{"shutdown":true}}'
# kubectl patch postgresCluster awx -n awx --type=merge -p '{"spec":{"shutdown":true}}'
# kubectl patch postgresCluster netbox -n netbox --type=merge -p '{"spec":{"shutdown":true}}'
kubectl scale --replicas=0 -n argocd deployment/argocd-operator-controller-manager
kubectl scale --replicas=0 -n argocd statefulset/argocd-application-controller
kubectl scale --replicas=0 -n argocd deployment/argocd-notifications-controller
kubectl scale --replicas=0 -n argocd deployment/argocd-repo-server
kubectl scale --replicas=0 -n argocd deployment/argocd-dex-server
kubectl scale --replicas=0 -n argocd deployment/argocd-server
kubectl scale --replicas=0 -n argocd-apps statefulset/argocd-apps-application-controller
kubectl scale --replicas=0 -n argocd-apps deployment/argocd-apps-dex-server
kubectl scale --replicas=0 -n argocd-apps deployment/argocd-apps-repo-server
kubectl scale --replicas=0 -n argocd-apps deployment/argocd-apps-server
kubectl scale --replicas=0 -n stackrox deployment/central
kubectl scale --replicas=0 -n stackrox deployment/scanner-db
kubectl scale --replicas=0 -n dragonfly-operator-system deployment/dragonfly-operator-controller-manager
kubectl scale --replicas=0 -n nextcloud statefulset/nextcloud-dragonfly
kubectl scale --replicas=0 -n gitea statefulset/gitea-dragonfly
kubectl scale --replicas=0 -n quay statefulset/quay-dragonfly
# kubectl scale --replicas=0 -n netbox statefulset/netbox-dragonfly
kubectl scale --replicas=0 -n loki-operator deployment/loki-operator-controller-manager
kubectl scale --replicas=0 -n network-observability-loki statefulset/netobserv-compactor
kubectl scale --replicas=0 -n network-observability-loki statefulset/netobserv-index-gateway
kubectl scale --replicas=0 -n network-observability-loki statefulset/netobserv-ingester
kubectl scale --replicas=0 -n network-observability-loki deployment/netobserv-distributor
kubectl scale --replicas=0 -n network-observability-loki deployment/netobserv-gateway
kubectl scale --replicas=0 -n network-observability-loki deployment/netobserv-querier
kubectl scale --replicas=0 -n network-observability-loki deployment/netobserv-query-frontend
# kubectl scale --replicas=0 -n awx deployment/awx-operator-controller-manager
# kubectl scale --replicas=0 -n awx deployment/awx-task
# kubectl scale --replicas=0 -n awx deployment/awx-web
# kubectl scale --replicas=0 -n netbox deployment/netbox
# kubectl scale --replicas=0 -n netbox deployment/netbox-worker
kubectl delete jobs -A --all
kubectl delete pipelineruns -A --all
}
stateful_workload_start_pre() {
kubectl scale --replicas=1 -n cockroach-operator-system deployments/cockroach-operator-manager
kubectl scale --replicas=3 -n zitadel statefulset/crdb
# kubectl scale --replicas=1 -n mongodb-operator deployments/mongodb-kubernetes-operator
# kubectl scale --replicas=3 -n unifi-network-application statefulset/mongo-unifi-network-application
kubectl scale --replicas=1 -n influxdb statefulset/influxdb
kubectl scale --replicas=1 -n loki statefulset/loki
# kubectl scale --replicas=3 -n mariadb-galera statefulset/mariadb-galera
kubectl scale --replicas=1 -n prometheus statefulset/prometheus
kubectl scale --replicas=1 -n prometheus statefulset/thanos-store-gateway
kubectl scale --replicas=1 -n quay deployment/quay-operator-tng
kubectl scale --replicas=1 -n postgres deployment/pgo
kubectl patch postgresCluster clair -n quay --type=merge -p '{"spec":{"shutdown":false}}'
kubectl patch postgresCluster quay -n quay --type=merge -p '{"spec":{"shutdown":false}}'
kubectl patch postgresCluster homeassistant -n homeassistant --type=merge -p '{"spec":{"shutdown":false}}'
kubectl patch postgresCluster gitea -n gitea --type=merge -p '{"spec":{"shutdown":false}}'
kubectl patch postgresCluster grafana -n postgres --type=merge -p '{"spec":{"shutdown":false}}'
kubectl patch postgresCluster nextcloud -n nextcloud --type=merge -p '{"spec":{"shutdown":false}}'
kubectl patch postgresCluster photoprism -n postgres --type=merge -p '{"spec":{"shutdown":false}}'
kubectl patch postgresCluster stackrox -n stackrox --type=merge -p '{"spec":{"shutdown":false}}'
# kubectl patch postgresCluster awx -n awx --type=merge -p '{"spec":{"shutdown":false}}'
# kubectl patch postgresCluster netbox -n netbox --type=merge -p '{"spec":{"shutdown":false}}'
kubectl scale --replicas=1 -n pihole statefulset/pihole
kubectl scale --replicas=1 -n pihole statefulset/pihole-vlan3
kubectl scale --replicas=2 -n ntp deployment/ntp-rootless
}
stateful_workload_start() {
kubectl patch cronjobs -n netbox netbox-housekeeping -p '{"spec" : {"suspend" : false }}'
kubectl patch cronjobs -n photoprism photoprism-cron -p '{"spec" : {"suspend" : false }}'
kubectl patch cronjobs -n nextcloud nextcloud-preview -p '{"spec" : {"suspend" : false }}'
kubectl patch cronjobs -n nextcloud nextcloud-rsync -p '{"spec" : {"suspend" : false }}'
kubectl patch cronjobs -n nextcloud nextcloud-cron -p '{"spec" : {"suspend" : false }}'
kubectl patch cronjobs -n mariadb-galera mysqldump-cron -p '{"spec" : {"suspend" : false }}'
kubectl scale --replicas=1 -n openshift-monitoring deployment/cluster-monitoring-operator
kubectl scale --replicas=1 -n dragonfly-operator-system deployment/dragonfly-operator-controller-manager
kubectl scale --replicas=2 -n nextcloud statefulset/nextcloud-dragonfly
kubectl scale --replicas=2 -n gitea statefulset/gitea-dragonfly
kubectl scale --replicas=2 -n quay statefulset/quay-dragonfly
kubectl scale --replicas=2 -n netbox statefulset/netbox-dragonfly
kubectl scale --replicas=1 -n cockroach-operator-system deployments/cockroach-operator-manager
kubectl scale --replicas=3 -n zitadel statefulset/crdb
kubectl scale --replicas=2 -n zitadel deployment/zitadel
# kubectl scale --replicas=1 -n mongodb-operator deployments/mongodb-kubernetes-operator
# kubectl scale --replicas=3 -n unifi-network-application statefulset/mongo-unifi-network-application
# kubectl scale --replicas=1 -n unifi-network-application statefulset/unifi-network-application
kubectl scale --replicas=1 -n bitwarden statefulset/bitwarden
kubectl scale --replicas=2 -n gitea deployment/gitea
kubectl scale --replicas=2 -n grafana deployment/grafana
kubectl scale --replicas=1 -n heimdall statefulset/heimdall
kubectl scale --replicas=1 -n homeassistant statefulset/homeassistant
kubectl scale --replicas=1 -n influxdb statefulset/influxdb
kubectl scale --replicas=1 -n loki statefulset/loki
kubectl scale --replicas=3 -n mariadb-galera statefulset/mariadb-galera
kubectl scale --replicas=2 -n nextcloud deployment/nextcloud
kubectl scale --replicas=1 -n photoprism statefulset/photoprism
kubectl scale --replicas=1 -n prometheus statefulset/prometheus
kubectl scale --replicas=1 -n prometheus statefulset/thanos-store-gateway
kubectl scale --replicas=1 -n prometheus statefulset/prometheus-truenas
kubectl scale --replicas=1 -n prometheus statefulset/thanos-truenas-store-gateway
kubectl scale --replicas=1 -n uptime-kuma statefulset/uptime-kuma
kubectl scale --replicas=3 -n vault statefulset/vault
#kubectl scale --replicas=1 -n minio-operator deployment/minio-operator
kubectl scale --replicas=1 -n quay deployment/quay-operator-tng
kubectl scale --replicas=2 -n quay deployment/quay-quay-app
kubectl scale --replicas=2 -n quay deployment/quay-clair-app
kubectl scale --replicas=2 -n quay deployment/quay-quay-mirror
kubectl scale --replicas=1 -n postgres deployment/pgo
kubectl patch postgresCluster clair -n quay --type=merge -p '{"spec":{"shutdown":false}}'
kubectl patch postgresCluster quay -n quay --type=merge -p '{"spec":{"shutdown":false}}'
kubectl patch postgresCluster homeassistant -n homeassistant --type=merge -p '{"spec":{"shutdown":false}}'
kubectl patch postgresCluster gitea -n gitea --type=merge -p '{"spec":{"shutdown":false}}'
kubectl patch postgresCluster grafana -n postgres --type=merge -p '{"spec":{"shutdown":false}}'
kubectl patch postgresCluster nextcloud -n nextcloud --type=merge -p '{"spec":{"shutdown":false}}'
kubectl patch postgresCluster photoprism -n postgres --type=merge -p '{"spec":{"shutdown":false}}'
kubectl patch postgresCluster stackrox -n stackrox --type=merge -p '{"spec":{"shutdown":false}}'
kubectl patch postgresCluster awx -n awx --type=merge -p '{"spec":{"shutdown":false}}'
kubectl patch postgresCluster netbox -n netbox --type=merge -p '{"spec":{"shutdown":false}}'
kubectl scale --replicas=1 -n argocd deployment/argocd-operator-controller-manager
kubectl scale --replicas=1 -n argocd statefulset/argocd-application-controller
kubectl scale --replicas=1 -n argocd statefulset/argocd-application-controller
kubectl scale --replicas=1 -n argocd deployment/argocd-repo-server
kubectl scale --replicas=1 -n argocd deployment/argocd-dex-server
kubectl scale --replicas=1 -n argocd deployment/argocd-server
kubectl scale --replicas=1 -n argocd-apps statefulset/argocd-apps-application-controller
kubectl scale --replicas=1 -n argocd-apps deployment/argocd-apps-dex-server
kubectl scale --replicas=1 -n argocd-apps deployment/argocd-apps-repo-server
kubectl scale --replicas=1 -n argocd-apps deployment/argocd-apps-server
kubectl scale --replicas=1 -n stackrox deployment/central
kubectl scale --replicas=1 -n stackrox deployment/scanner-db
kubectl scale --replicas=1 -n loki-operator deployment/loki-operator-controller-manager
# kubectl scale --replicas=1 -n awx deployment/awx-operator-controller-manager
# kubectl scale --replicas=1 -n awx deployment/netbox
# kubectl scale --replicas=1 -n awx deployment/netbox-worker
# echo -e "\nkubectl exec -it vault-0 -n vault -- vault operator unseal --tls-skip-verify"
}
kvm-infra() {
ssh 10.0.0.110
virt-install \
--noautoconsole \
--graphics vnc \
--name=k3s-server-2 \
--os-variant=debian10 \
--vcpus sockets=1,cores=1,threads=2 \
--ram=1792 \
--disk "/mnt/storage/vm/k3s-server-2".img,,format=raw,size=25 \
--network bridge=br0,mac="10:00:00:00:01:02" \
--location=http://ftp.us.debian.org/debian/dists/stable/main/installer-amd64/ \
--extra-args="\
auto=true priority=critical vga=normal hostname=k3s-server-2 \
url=http://10.0.0.5:7071/preseed.cfg"
virt-install \
--noautoconsole \
--graphics vnc \
--name=k3s-worker-1 \
--os-variant=debian10 \
--vcpus sockets=1,cores=2,threads=2 \
--ram=10240 \
--disk "/mnt/storage/vm/k3s-worker-1".img,,format=raw,size=125 \
--network bridge=br0,mac="10:00:00:00:01:11" \
--location=http://ftp.us.debian.org/debian/dists/stable/main/installer-amd64/ \
--extra-args="\
auto=true priority=critical vga=normal hostname=k3s-worker-1 \
url=http://10.0.0.5:7071/preseed.cfg"
}
kvm() {
ssh 10.101.1.6
export LIBVIRT_DEFAULT_URI=qemu:///system
virt-install \
--noautoconsole \
--graphics vnc \
--name=k3s-server-3 \
--os-variant=debian10 \
--vcpus sockets=1,cores=1,threads=2 \
--ram=1792 \
--disk "/mnt/storage/vm/k3s-server-3".img,,format=raw,size=25 \
--network bridge=br0,mac="10:00:00:00:01:03" \
--location=http://ftp.us.debian.org/debian/dists/stable/main/installer-amd64/ \
--extra-args="\
auto=true priority=critical vga=normal hostname=k3s-server-3 \
url=http://10.0.0.5:7071/preseed.cfg"
virt-install \
--noautoconsole \
--graphics vnc \
--name=k3s-worker-2 \
--os-variant=debian10 \
--vcpus sockets=1,cores=2,threads=2 \
--ram=4352 \
--disk "/mnt/storage/vm/k3s-worker-2".img,,format=raw,size=125 \
--network bridge=br0,mac="10:00:00:00:01:12" \
--location=http://ftp.us.debian.org/debian/dists/stable/main/installer-amd64/ \
--extra-args="\
auto=true priority=critical vga=normal hostname=k3s-worker-2 \
url=http://10.0.0.5:7071/preseed.cfg"
}
label_nodes() {
# Taint
kubectl taint node k3s-server-1 node-role.kubernetes.io/control-plane:NoSchedule --overwrite
kubectl taint node k3s-server-2 node-role.kubernetes.io/control-plane:NoSchedule --overwrite
kubectl taint node k3s-server-3 node-role.kubernetes.io/control-plane:NoSchedule --overwrite
kubectl taint node k3s-server-2 node-role.kubernetes.io/control-plane:NoSchedule --overwrite
kubectl taint node k3s-server-3 node-role.kubernetes.io/control-plane:NoSchedule --overwrite
# Role Label
kubectl label node k3s-worker-1 node-role.kubernetes.io/infra=true --overwrite
kubectl label node k3s-worker-1 node-role.kubernetes.io/worker=true --overwrite
kubectl label node k3s-worker-2 node-role.kubernetes.io/worker=true --overwrite
# Zone Labels
kubectl label node k3s-server-1 topology.kubernetes.io/zone=bare-metal --overwrite
kubectl label node k3s-server-2 topology.kubernetes.io/zone=infra-kvm --overwrite
kubectl label node k3s-server-3 topology.kubernetes.io/zone=kvm --overwrite
kubectl label node k3s-worker-1 topology.kubernetes.io/zone=infra-kvm --overwrite
kubectl label node k3s-worker-2 topology.kubernetes.io/zone=kvm --overwrite
# Longhorn Label
kubectl label node k3s-server-1 node.longhorn.io/create-default-disk=true --overwrite
kubectl label node k3s-worker-1 node.longhorn.io/create-default-disk=true --overwrite
kubectl label node k3s-worker-2 node.longhorn.io/create-default-disk=true --overwrite
# #Drain DaemonSets Temporarily off a Node
# kubectl taint node k3s-server- node-role.kubernetes.io/control-plane:NoExecute
# kubectl taint node k3s-server- node-role.kubernetes.io/control-plane:NoExecute-
}
k3s_setup() {
# Configure PFsense / HAProxy / DHCP / DNS
# Servers
ansible-playbook -i ansible/inventory --ask-become-pass ansible/servers.yaml --ask-pass
# Reboot All Kubernetes Nodes && For KVM Nodes Update DHCP Server With New Mac Address
# Install VMs
bash kvm_k3s.bash kvm-infra
bash kvm_k3s.bash kvm
bash kvm_k3s.bash ansible
# Reboot VMs
# Install K3s
# First Time Setup
export K3S_TOKEN=""
export RESERVED="--kubelet-arg system-reserved=cpu=250m,memory=500Mi --kubelet-arg kube-reserved=cpu=250m,memory=500Mi"
curl -sfL https://get.k3s.io | INSTALL_K3S_EXEC="server --cluster-init --tls-san 10.0.0.100 --tls-san k3s.<URL>.com ${RESERVED}" \
INSTALL_K3S_CHANNEL=v1.23 sh -
# Servers
export K3S_TOKEN=""
export RESERVED="--kubelet-arg system-reserved=cpu=250m,memory=500Mi --kubelet-arg kube-reserved=cpu=250m,memory=500Mi"
curl -sfL https://get.k3s.io |
INSTALL_K3S_EXEC="server --server https://10.0.0.100:6443 --disable traefik ${RESERVED}" \
K3S_URL=https://10.0.0.100:6443 INSTALL_K3S_CHANNEL=v1.23 sh -
# Agents/Workers
export K3S_TOKEN=""
export RESERVED="--kubelet-arg system-reserved=cpu=250m,memory=250Mi --kubelet-arg kube-reserved=cpu=250m,memory=250Mi"
curl -sfL https://get.k3s.io |
INSTALL_K3S_EXEC="${RESERVED}" \
K3S_URL=https://10.0.0.100:6443 INSTALL_K3S_CHANNEL=v1.23 sh -
# Label Nodes
bash kvm_k3s label_nodes
}
k3s_image_cleanup() {
export IP_LIST="5 102 103 111 112"
for IP in ${IP_LIST}; do
ssh -t [email protected]."${IP}" "sudo k3s crictl rmi --prune"
done
}
# Sandbox Functions
# SANDBOX HAPROXY: /machineConfigs/sandbox/var/etc/haproxy
# Setup DHCP Network
# virsh net-edit default
# <host mac='10:10:00:00:00:03' ip='10.10.10.3'/>
# <host mac='10:10:00:00:00:04' ip='10.10.10.4'/>
# <host mac='10:10:00:00:00:05' ip='10.10.10.5'/>
# <host mac='10:10:00:00:00:06' ip='10.10.10.6'/>
# <host mac='10:10:00:00:00:07' ip='10.10.10.7'/>
# <host mac='10:10:00:00:00:08' ip='10.10.10.8'/>
# <host mac='10:10:00:00:00:09' ip='10.10.10.9'/>
# virsh net-destroy default && virsh net-start default
export START_IP=11
export PASSWORD=${PASSWORD:-}
stop_cluster() {
echo -e "\n${BLUE}Stopping Cluster:${NC}"
for NODE in ${NODES}; do
if virsh destroy "${PREFIX}${NODE}"; then
echo "Shutting Down:${PREFIX}${NODE}"
fi
done
}
start_cluster() {
echo -e "\n${BLUE}Starting Cluster:${NC}"
for NODE in ${NODES}; do
virsh start "${PREFIX}${NODE}"
echo "Started ${PREFIX}${NODE}"
done
}
reboot_cluster() {
echo -e "\n${BLUE}Rebooting Cluster:${NC}"
for NODE in ${NODES}; do
virsh reboot "${PREFIX}${NODE}"
echo "Started ${PREFIX}${NODE}"
done
IP=${START_IP}
for NODE in ${NODES}; do
finished="0"
while [ "$finished" = "0" ]; do
sleep 1
if nc -z 10.10.10.${IP} 22; then
echo "${PREFIX}${NODE} is up."
finished=1
fi
done
((IP++))
done
}
delete_cluster() {
stop_cluster
echo -e "\n${BLUE}Deleting Cluster:${NC}"
for NODE in ${NODES}; do
echo "${NODE}"
if virsh undefine "${PREFIX}${NODE}" --remove-all-storage; then
echo "Deleting: ${PREFIX}${NODE}"
fi
done
}
ansible_sandbox() {
echo -e "\n${BLUE}Running Ansible Playbooks:${NC}"
if [ -z "${PASSWORD}" ]; then
echo -n Password:
read -r -s PASSWORD
echo ""
fi
IP=${START_IP}
# Create Ansible Inventory File
echo "[servers]" >/tmp/inventory
for NODE in ${NODES}; do
echo "10.10.10.${IP}" >>/tmp/inventory
((IP++))
done
# Run Playbooks On All Machines
ansible-playbook -i /tmp/inventory ansible/servers.yaml --extra-vars \
"ansible_become_pass=${PASSWORD} ansible_ssh_pass=${PASSWORD}"
}
label_vms() {
load_kubeconfig
echo -e "\n${BLUE}Labeling Nodes:${NC}"
for NODE in ${NODES}; do
if [[ "${NODE}" =~ "master" || "${NODE}" =~ "server" ]]; then
kubectl label nodes "${PREFIX}${NODE}" node-type=master --overwrite
kubectl taint node "${PREFIX}${NODE}" node-role.kubernetes.io/control-plane:NoSchedule --overwrite
elif [[ "${NODE}" =~ "worker" || "${NODE}" =~ "agent" ]]; then
kubectl label node "${PREFIX}${NODE}" node-role.kubernetes.io/worker=true --overwrite
ZONE="EVEN"
if ((${NODE##*-} % 2)); then
ZONE="ODD"
fi
kubectl label node "${PREFIX}${NODE}" topology.kubernetes.io/zone="${ZONE}" --overwrite
kubectl label node "${PREFIX}${NODE}" node.longhorn.io/create-default-disk=true --overwrite
fi
done
}
load_kubeconfig() {
echo -e "\n${BLUE}Loading KubeConfig:${NC}"
export KUBECONFIG=/mnt/storage/vm/${PREFIX}/${PREFIX}.yaml
}
uninstall_k3s() {
echo -e "\n\n${BLUE}Uninstall k3s:${NC}"
if [ -z "${PASSWORD}" ]; then
echo -n Password:
read -r -s PASSWORD
echo ""
fi
IP=${START_IP}
for NODE in ${NODES}; do
echo "${PREFIX}${NODE}"
if [[ "${NODE}" =~ "master" || "${NODE}" =~ "server" ]]; then
sshpass -p "${PASSWORD}" ssh -t 10.10.10.${IP} "echo ${PASSWORD} | sudo -S /usr/local/bin/k3s-uninstall.sh"
elif [[ "${NODE}" =~ "worker" || "${NODE}" =~ "agent" ]]; then
sshpass -p "${PASSWORD}" ssh -t 10.10.10.${IP} "echo ${PASSWORD} | sudo -S /usr/local/bin/k3s-agent-uninstall.sh"
fi
((IP++))
done
}
install_k3s() {
# Install & Setup k3s
echo -e "\n\n${BLUE}Install & Setup k3s:${NC}"
if [ -z "${PASSWORD}" ]; then
echo -n Password:
read -r -s PASSWORD
echo ""
fi
K3S="echo ${PASSWORD} | sudo -S ls; curl -sfL https://get.k3s.io | INSTALL_K3S_EXEC='"
K3S_RESERVED="--kubelet-arg system-reserved=cpu=125m,memory=250Mi --kubelet-arg kube-reserved=cpu=125m,memory=250Mi'"
K3S_CONFIG="K3S_TOKEN=${K3S_TOKEN} INSTALL_K3S_CHANNEL=v1.23 sh -"
INSTALL="${K3S} server --cluster-init --disable traefik ${K3S_RESERVED} ${K3S_CONFIG}"
SERVER=" ${K3S} server --server https://10.10.10.1:6443 --disable traefik ${K3S_RESERVED} ${K3S_CONFIG}"
WORKER=" ${K3S} ${K3S_RESERVED} K3S_URL=https://10.10.10.1:6443 ${K3S_CONFIG}"
IP=${START_IP}
for NODE in ${NODES}; do
KUBE=0
if [[ "${NODE}" =~ "master" || "${NODE}" =~ "server" ]]; then
if [ ${IP} -eq ${START_IP} ]; then
CONFIG=${INSTALL}
KUBE=1
else
CONFIG=${SERVER}
fi
elif [[ "${NODE}" =~ "worker" || "${NODE}" =~ "agent" ]]; then
CONFIG=${WORKER}
fi
echo "${PREFIX}${NODE}"
sshpass -p "${PASSWORD}" ssh -t 10.10.10.${IP} "${CONFIG}"
if [ ${KUBE} -eq 1 ]; then
CMD="echo ${PASSWORD} | sudo -S cp /etc/rancher/k3s/k3s.yaml /tmp; sudo chmod 777 /tmp/k3s.yaml"
sshpass -p "${PASSWORD}" ssh -t 10.10.10.${START_IP} "${CMD}"
sshpass -p "${PASSWORD}" scp 10.10.10.${START_IP}:/tmp/k3s.yaml "/mnt/storage/vm/${PREFIX}/${PREFIX}.yaml"
sed -i "s,127.0.0.1,10.10.10.1,g" "/mnt/storage/vm/${PREFIX}/${PREFIX}.yaml"
fi
((IP++))
done
echo -e "\n\n${BLUE}Install Complete!${NC}"
echo "export KUBECONFIG=/mnt/storage/vm/${PREFIX}/${PREFIX}.yaml"
echo "${PREFIX} k3s Install Complete!"
}
install_addons() {
# Tweak Settings from Physical HomeLab
load_kubeconfig
echo -e "\n${BLUE}Installing Cluster Addons:${NC}"
echo -e "\n\n${BLUE}Get URL:${NC}"
URL=${URL:-}
if [ -z "${URL}" ]; then
echo -n URL:
read -r -s URL
echo ""
fi
echo "${URL}"
rm -rf /tmp/kubernetes
cp -r kubernetes /tmp/
echo -e "\n${BLUE}Traefik:${NC}"
kubectl apply -f /tmp/kubernetes/traefik/traefik-namespace.yaml
sed -i "s/<URL>/${URL}/g" /tmp/kubernetes/traefik/traefik-dashboard-traefik.yaml
rm -f /tmp/kubernetes/traefik/cluster-wildcard-certificate.yaml
kubectl apply -f /tmp/kubernetes/traefik/traefik-crd.yaml
kubectl apply -f /tmp/kubernetes/traefik
echo -e "\n${BLUE}Kube Eagle:${NC}"
kubectl apply -f /tmp/kubernetes/kube-eagle
echo -e "\n${BLUE}Kubernetes Dashboard:${NC}"
kubectl apply -f /tmp/kubernetes/kubernetes-dashboard/kubernetes-dashboard-namespace.yaml
sed -i "s/<URL>/${URL}/g" /tmp/kubernetes/kubernetes-dashboard/kubernetes-dashboard-traefik.yaml
kubectl apply -f /tmp/kubernetes/kubernetes-dashboard
echo -e "\n${BLUE}Longhorn:${NC}"
kubectl apply -f /tmp/kubernetes/longhorn/longhorn-namespace.yaml
sed -i "s/<URL>/${URL}/g" /tmp/kubernetes/longhorn/longhorn-traefik.yaml
kubectl apply -f /tmp/kubernetes/longhorn
kubectl patch daemonset -n longhorn-system longhorn-manager --type=json -p='[{"op": "remove", "path": "/spec/template/spec/tolerations"}]'
echo -e "\n${BLUE}Waiting for Longhorn to Boot:${NC}"
while [ "$(kubectl get pods -n longhorn-system | grep -cv Running)" -ne 1 ]; do
sleep 1
done
echo -e "\n${BLUE}Prometheus:${NC}"
kubectl apply -f /tmp/kubernetes/prometheus/prometheus-namespace.yaml
sed -i "s/<URL>/${URL}/g" /tmp/kubernetes/prometheus/prometheus-traefik.yaml
kubectl apply -f /tmp/kubernetes/prometheus
echo -e "\n${BLUE}Image Version Checker:${NC}"
kubectl apply -f /tmp/kubernetes/version-checker/version-checker-namespace.yaml
kubectl apply -f /tmp/kubernetes/version-checker
echo -e "\n${BLUE}Grafana:${NC}"
kubectl apply -f /tmp/kubernetes/grafana/grafana-namespace.yaml
sed -i "s/<URL>/${URL}/g" /tmp/kubernetes/grafana/grafana-traefik.yaml
kubectl apply -f /tmp/kubernetes/grafana
kubectl patch deployment -n grafana grafana --type=json -p='[{"op": "remove", "path": "/spec/template/spec/containers/0/env"}]'
echo -e "\n${BLUE}Grafana Loki:${NC}"
kubectl apply -f /tmp/kubernetes/grafana-loki
echo -e "\n${BLUE}Grafana Promtail:${NC}"
kubectl apply -f /tmp/kubernetes/grafana-promtail
echo -e "\n\n${BLUE}Addons Installed!${NC}"
}
install_addons_optional() {
load_kubeconfig
echo -e "\n${BLUE}Heimdall:${NC}"
kubectl apply -f /tmp/kubernetes/heimdall/heimdall-namespace.yaml
sed -i "s/<URL>/${URL}/g" /tmp/kubernetes/heimdall/heimdall-traefik.yaml
sed -i "s/replicas: 1/replicas: 0/g" /tmp/kubernetes/heimdall/heimdall-statefulSet.yaml
kubectl apply -f /tmp/kubernetes/heimdall
kubectl patch statefulset -n heimdall heimdall --type=json -p='[{"op": "remove", "path": "/spec/template/spec/affinity"}]'
kubectl patch statefulset -n heimdall heimdall --type=json -p='[{"op": "remove", "path": "/spec/template/spec/tolerations"}]'
kubectl scale --replicas=1 statefulSet/heimdall -n heimdall
echo -e "\n${BLUE}Uptime Kuma:${NC}"
kubectl apply -f /tmp/kubernetes/uptime-kuma/uptime-kuma-namespace.yaml
sed -i "s/<URL>/${URL}/g" /tmp/kubernetes/uptime-kuma/uptime-kuma-traefik.yaml
sed -i "s/replicas: 1/replicas: 0/g" /tmp/kubernetes/uptime-kuma/uptime-kuma-statefulSet.yaml
kubectl apply -f /tmp/kubernetes/uptime-kuma
kubectl patch statefulset -n uptime-kuma uptime-kuma --type=json -p='[{"op": "remove", "path": "/spec/template/spec/affinity"}]'
kubectl patch statefulset -n uptime-kuma uptime-kuma --type=json -p='[{"op": "remove", "path": "/spec/template/spec/tolerations"}]'
kubectl scale --replicas=1 statefulSet/uptime-kuma -n uptime-kuma
}
get_dashboard_secret() {
load_kubeconfig
echo -e "\n${BLUE}Kubernetes Dashboard Secret:${NC}"
# shellcheck disable=SC2046
kubectl get secret -n kubernetes-dashboard \
$(kubectl get serviceaccount admin-user -n kubernetes-dashboard -o jsonpath="{.secrets[0].name}") \
-o jsonpath="{.data.token}" | base64 --decode
}
preseed_server() {
echo -e "\n${BLUE}Loading Preseed Server:${NC}"
echo -n Password:
read -r -s PASSWORD
echo ""
# Startup Preseed Web Server
mkdir -p /tmp/preseed/
cp machineConfigs/preseed.cfg /tmp/preseed//preseed.cfg
mkpasswd -m md5 "${PASSWORD}"
sed -i "s,#d-i passwd/user-password-crypted password <HASH>,d-i passwd/user-password-crypted password $(mkpasswd -s -m md5 "${PASSWORD}"),g" "/tmp/preseed/preseed.cfg"
python3 -m http.server --directory /tmp/preseed/
}
install_cluster() {
echo -e "\n${BLUE}Installing Cluster:${NC}"
echo -n Password:
read -r -s PASSWORD
echo ""
# IP Counter
IP=${START_IP}
# Delete Cluster If Exists
delete_cluster
mkdir -p "/mnt/storage/vm/${PREFIX}"
for NODE in ${NODES}; do
echo -e "\n\n${BLUE}Creating: ${PREFIX}${NODE}${NC}"
if [[ "${NODE}" =~ "master" || "${NODE}" =~ "server" ]]; then
CPU=3
MEMORY=4096
DISK=15
elif [[ "${NODE}" =~ "worker" || "${NODE}" =~ "agent" ]]; then
CPU=6
MEMORY=8192
DISK=30
fi
# Install VM
#--debug \
#--wait=-1 \
# shellcheck disable=SC2140
virt-install \
--noautoconsole \
--graphics vnc \
--name="${PREFIX}${NODE}" \
--os-variant=debian11 \
--vcpus sockets=1,cores=1,threads="${CPU}" \
--ram="${MEMORY}" \
--disk "/mnt/storage/vm/${PREFIX}/${PREFIX}${NODE}".img,size="${DISK}" \
--network network=default,model=virtio,mac="10:10:00:00:00:${IP}" \
--location=http://ftp.us.debian.org/debian/dists/stable/main/installer-amd64/ \
--extra-args="\
auto=true priority=critical vga=normal hostname=${PREFIX}${NODE} \
url=http://10.10.10.1:8000/preseed.cfg"
# https://crysol.org/recipe/2012-12-25/virtual-machine-unattended-debian-installations-with-libvirt-and-d-i-preseeding.html
((IP++))
done
# Wait for Machines to Finish Installing OS, Then Boot Machines
echo -e "\n\n${BLUE}Booting Nodes:${NC}"
echo "Waiting for Installation to Finish..."
echo "http://localhost:9090/machines"
for NODE in ${NODES}; do
# https://serverfault.com/a/386867
finished="0"
while [ "$finished" = "0" ]; do
sleep 5
if [ "$(virsh list --all | grep 'running' | grep "${PREFIX}${NODE}" | wc -c)" -eq 0 ]; then
echo "Starting vm ${PREFIX}${NODE}"
sleep 1
virsh start "${PREFIX}${NODE}"
finished=1
fi
done
done
# Add Machines to Known Hosts
echo -e "\n\n${BLUE}Add SSH Known Hosts:${NC}"
IP=${START_IP}
for NODE in ${NODES}; do
finished="0"
while [ "$finished" = "0" ]; do
sleep 1
if nc -z 10.10.10.${IP} 22; then
ssh-keygen -f "${HOME}/.ssh/known_hosts" -R "10.10.10.${IP}"
ssh-keyscan 10.10.10.${IP} >>"${HOME}/.ssh/known_hosts"
finished=1
fi
done
((IP++))
done
# Run Playbooks On All Machines
ansible_sandbox
reboot_cluster
}
install_k3s_cluster() {
export PREFIX="sk3s" # Sandbox k3s
export K3S_TOKEN=${PREFIX} # Sandbox k3s
export NODES="-master-0 -master-1 -master-2 -worker-0 -worker-1 -worker-2 -worker-3"
install_cluster
# Install & Setup k3s
install_k3s
export KUBECONFIG="/mnt/storage/vm/${PREFIX}/${PREFIX}.yaml"
while [ "$(kubectl get nodes | wc -l)" -le "$(echo "${NODES}" | wc -w)" ]; do
sleep 1
done
# Label Nodes
label_vms
# Install Addons
install_addons
install_addons_optional
get_dashboard_secret
echo " "
echo "export KUBECONFIG=/mnt/storage/vm/${PREFIX}/${PREFIX}.yaml"
echo "${PREFIX} k3s Install Complete!"
}
monitor_okd_virt() {
export HOMELAB="${PWD}"
export OKD=/tmp/okd
export KUBECONFIG="${OKD}/okd/auth/kubeconfig"
"${OKD}/openshift-install" agent wait-for bootstrap-complete --dir "${OKD}/okd/"
"${OKD}/openshift-install" agent wait-for install-complete --dir "${OKD}/okd/"
}
delete_okd_virt() {
export HOMELAB="${PWD}"
export OKD=/tmp/okd
# TODO, Automate Finding Which IPs to Remove
ssh-keygen -R 10.103.10.101
ssh-keygen -R 10.103.10.102
ssh-keygen -R 10.103.10.103
echo -e "\n\n${BLUE}Delete All Existing Data:${NC}"
rm -rf \
${OKD}/oc \
${OKD}/kubectl \
${OKD}/openshift-install \
${OKD}/okd
# "${HOME}/.cache/agent" \
# ${OKD}/openshift-install-linux* \
# ${OKD}/openshift-client-linux* \
kubectl delete -f "${HOMELAB}/sandbox/kubevirt/okd/vm" --ignore-not-found
}
delete_okd_bm() {
export HOMELAB="${PWD}"
export OKD=/tmp/okd
echo -e "\n\n${BLUE}Delete All Existing Data:${NC}"
rm -rf \
${OKD}/oc \
${OKD}/kubectl \
${OKD}/openshift-install \
${OKD}/okd
# "${HOME}/.cache/agent" \
# ${OKD}/openshift-install-linux* \
# ${OKD}/openshift-client-linux* \
}
install_okd_prep() {
sudo mount -o remount,size=8G,noatime /tmp
export XDG_CACHE_HOME="/tmp/cache"
mkdir -p "${XDG_CACHE_HOME}"
export AVP_TYPE=vault
export AVP_AUTH_TYPE=token
if [ -z "${VAULT_TOKEN}" ]; then
export VAULT_TOKEN
VAULT_TOKEN=$(vault login --tls-skip-verify -address="${URL}" -method=userpass -token-only username=arthur)
fi
if [ -z "${URL}" ]; then
echo -n URL:
read -r -s URL
echo ""
fi
echo "${URL}"
echo -e "\n\n${BLUE}Get Registry URL:${NC}"
export REGISTRY
REGISTRY=${REGISTRY:-registry.arthurvardevanyan.com}
if [ -z "${REGISTRY}" ]; then
echo -n REGISTRY:
read -r -s REGISTRY
echo ""
fi
echo "${REGISTRY}"
echo -e "\n\n${BLUE}Download Dependencies:${NC}"
export OKD_VERSION=${OKD_VERSION:-""}
if [ -z "${OKD_VERSION}" ]; then
export OKD_CHANNEL=${OKD_CHANNEL:-4-scos-stable}
# https://github.com/JaimeMagiera/oct/blob/3968059ca79d9b60245aaff659533f6090c9a722/helpers/okd-query-releases.sh#L137
OKD_VERSION=$(curl -s "https://amd64.origin.releases.ci.openshift.org/releasestream/${OKD_CHANNEL}" | grep "Accepted" -B 1 | awk 'sub(/.*release\/ */,""){f=1} f{if ( sub(/ *".*/,"") ) f=0; print}' | head -n 1)
fi
echo "${OKD_VERSION}"
if [[ $OKD_VERSION == *"scos"* ]]; then
export OKD_URL="quay.io/okd/scos-release:${OKD_VERSION}"
export OKD_URL_CI="registry.ci.openshift.org/origin/release-scos:${OKD_VERSION}"
else
export OKD_URL="quay.io/openshift/okd:${OKD_VERSION}"
export OKD_URL_CI="registry.ci.openshift.org/origin/release:${OKD_VERSION}"
fi
if [ ! -f "${OKD}/openshift-install-linux-${OKD_VERSION}.tar.gz" ]; then
echo "Required tools not found. Downloading..."
if ! oc adm release extract --tools "${OKD_URL}" --to="${OKD}/"; then
echo -e "${BLUE}Trying CI Registry:${NC}"
oc adm release extract --tools "${OKD_URL_CI}" --to="${OKD}/"
fi
else
echo "Tools already present. Skipping download."
fi
tar xvzf "${OKD}"/openshift-install-linux-4* -C "${OKD}"
tar xvzf "${OKD}"/openshift-client-linux-4* -C "${OKD}"
mkdir -p "${OKD}/vm"
echo -e "\n\n${BLUE}Create Config Files:${NC}"
# Create okd directory of openshift-install files
mkdir -p "${OKD}"/okd