-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpre_install_chk.sh
executable file
·1685 lines (1420 loc) · 48.9 KB
/
pre_install_chk.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
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
#output file
OUTPUT="/tmp/preInstallCheckResult"
ANSIBLEOUT="/tmp/preInstallAnsible"
rm -f ${OUTPUT}
rm -f ${ANSIBLEOUT}
#user variables, modify these to change the default hosts you would like this script to run on
hosts=bastion
compute=worker #Used in post_ocp, pre_cpd checks for kernel checks
load_balance=bastion #Used in timeout settings check, clocksync check
core=core #Used in disk_encryption check
#global variables
GLOBAL=(
https://www.ibm.com/support/knowledgecenter/SSQNUZ_3.0.1/cpd/install/node-settings.html#node-settings__lb-proxy
3.0.1
16
)
OCP_VER=(
3.11.188
3.11.200
3.11.216
3.11.219
3.11.232
4.3.13
4.3.18
4.3.19
4.3.21
4.3.22
4.3.23
4.3.24
4.3.25
4.3.26
4.3.27
4.3.28
4.3.29
4.5.0
4.5.1
4.5.2
4.5.3
4.5.4
4.5.5
4.5.6
4.5.7
4.5.8
)
THREE_ELEVEN_MIN=188
FOUR_THREE_MIN=13
FOUR_FIVE_MIN=4
#These urls should be unblocked. The function check_unblocked_urls will validate that these are reachable
URLS=(
http://registry.ibmcloudpack.com/cpd301/
https://registry.redhat.io
https://quay.io
https://sso.redhat.com
https://github.com/IBM
https://cp.icr.io
https://us.icr.io
https://gcr.io
https://k8s.gcr.io
https://quay.io
https://docker.io
https://raw.github.com
https://myibm.ibm.com
https://www.ibm.com/software/passportadvantage/pao_customer.html
https://www.ibm.com/support/knowledgecenter
http://registry.ibmcloudpack.com/
https://docs.portworx.com
http://mirrors.portworx.com
)
function usage(){
echo ""
echo -e "\033[0;32mThis script checks if all nodes meet requirements for OpenShift and CPD installation.\033[0m"
echo ""
echo -e "\033[0;32mArguments:\033[0m "
echo "
--phase=[pre_ocp|post_ocp|pre_cpd] To specify installation type"
echo "
--host_type=[core|worker|master|bastion|root] To specify nodes to check (Default is bastion).
The valid arguments to --host_type are the names
of the groupings of nodes listed in hosts_openshift"
echo "
--ocp_ver=[311] To specify openshift version (Default is 4.3).
This option should be used if ocp version is 3.11
or machines in the cluster are not core machines"
echo ""
echo -e "\033[0;34mNOTE: If any test displays a 'Could not match supplied host pattern' warning, you will have to modify the hosts_openshift inventory file so that your nodes are correctly grouped, or utilize the --host_type argument to pass in the correct group of nodes to be tested.
Some tests are configured to only be ran on certain groups.\033[0m"
echo ""
echo -e "\033[0;32mExample Script Calls:\033[0m "
echo "./pre_install_chk.sh --phase=pre_ocp"
echo "./pre_install_chk.sh --phase=post_ocp --host_type=core"
echo ""
echo -e "\033[0;34mThis script takes advantage of ansible playbooks to perform its checks.
If any test fails, you can view the results of its playbook in ${OUTPUT}
The current value of the variable tested will appear under the 'debug' task for that particular playbook.\033[0m"
echo ""
}
###############
function log() {
if [[ "$1" =~ ^ERROR* ]]; then
eval "$2='\033[91m\033[1m$1\033[0m'"
elif [[ "$1" =~ ^Running* ]]; then
eval "$2='\033[1m$1\033[0m'"
elif [[ "$1" =~ ^WARNING* ]]; then
eval "$2='\033[1m$1\033[0m'"
elif [[ "$1" =~ ^NOTE* ]]; then
eval "$2='\033[1m$1\033[0m'"
else
eval "$2='\033[92m\033[1m$1\033[0m'"
fi
}
function printout() {
echo -e "$1" | tee -a ${OUTPUT}
}
function contains() {
local n=$#
local value=${!n}
for ((i=1;i < $#;i++)) {
if [ "${!i}" == "${value}" ]; then
echo "y"
return 0
fi
}
echo "n"
return 1
}
#################
function check_openshift_version() {
output=""
echo -e "\nChecking Openshift Version" | tee -a ${OUTPUT}
three_eleven=$(oc version | grep "openshift v3\.11\." | awk -F "v" '{print $2}')
four_ex=$(oc version | grep "Server Version:" | grep -Eo "([0-9]{1,}\.)+[0-9]{1,}")
if [[ ${three_eleven} != "" ]]; then
vers=$(echo "${three_eleven}" | grep -Eo "3\.11\.[0-9]{1,}")
three_eleven_minor_vers=$(oc version | grep "openshift v3\.11\." | awk -F "v3.11." '{print $2}')
else
vers=$(oc version | grep "Server Version:" | grep -Eo "([0-9]{1,}\.)+[0-9]{1,}")
four_ex_major_vers=$(oc version | grep "Server Version:" | grep -Eo "([0-9]{1,}\.)+[0-9]{1,}" | awk -F "." '{print $1"."$2}')
four_ex_minor_vers=$(oc version | grep "Server Version:" | grep -Eo "([0-9]{1,}\.)+[0-9]{1,}" | awk -F "." '{print $3}')
fi
echo "${vers}"
if [[ ( ! -z ${three_eleven} && $three_eleven_minor_vers -ge ${THREE_ELEVEN_MIN} ) ]]; then
log "[Passed]" result
elif [[ ( ${four_ex_major_vers} == "4.3" && $four_ex_minor_vers -ge ${FOUR_THREE_MIN} ) ]]; then
log "[Passed]" result
elif [[ ( ${four_ex_major_vers} == "4.5" && $four_ex_minor_vers -ge ${FOUR_FIVE_MIN} ) ]]; then
log "[Passed]" result
else
log "ERROR: Your version of Openshift is not compatible with Cloud Pak for Data. If on 3.11, update to at least 3.11.188. If on 4.3, update to at least version 4.3.13. If on 4.5, update to at least version 4.5.4." result
ERROR=1
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 ]]; then
printout "$output"
fi
}
function check_crio_version() {
output=""
failed=0
echo -e "\nChecking CRI-O Version. Note: this test is being tested on master nodes." | tee -a ${OUTPUT}
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l master playbook_311/check_crio_version.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l master playbook_43/check_crio_version.yml > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "ERROR: Version of CRI-O must be at least 1.13." result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
failed=1
else
log "[Passed]" result
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 ]]; then
printout "$output"
fi
if [[ ${failed} -eq 1 ]]; then
echo -e "These nodes failed the test/were unreachable:"
egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
do
:
echo "${line}" | awk '{print $1, $5, $6}'
done
fi
}
function check_timeout_settings(){
output=""
failed=0
echo -e "\nChecking Timeout Settings on Load Balancer" | tee -a ${OUTPUT}
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${load_balance} playbook_311/check_timeout_settings.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${load_balance} playbook_43/check_timeout_settings.yml > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "ERROR: Your HAProxy client and server timeout settings are below 5 minutes.
Please update your /etc/haproxy/haproxy.cfg file.
Visit ${GLOBAL[0]} for update commands" result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
failed=1
else
log "[Passed]" result
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 ]]; then
printout "$output"
fi
if [[ ${failed} -eq 1 ]]; then
echo -e "These nodes failed the test/were unreachable:"
egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
do
:
echo "${line}" | awk '{print $1, $5, $6}'
done
fi
}
function validate_internet_connectivity(){
output=""
echo -e "\nChecking Connection to Internet" | tee -a ${OUTPUT}
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${hosts} playbook_311/internet_connect.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${hosts} playbook_43/internet_connect.yml > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "ERROR: Could not reach IBM.com. Check internet connection" result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
else
log "[Passed]" result
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 ]]; then
printout "$output"
fi
}
function validate_ips(){
output=""
echo -e "\nChecking for host IP Address" | tee -a ${OUTPUT}
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${hosts} playbook_311/validate_ip_addresses.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${hosts} playbook_43/validate_ip_addresses.yml > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "ERROR: Host ip is not a valid ip." result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
else
log "[Passed]" result
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 ]]; then
printout "$output"
fi
}
function validate_network_speed(){
output=""
echo -e "\nChecking network speed" | tee -a ${OUTPUT}
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift playbook_311/check_network_speed.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift playbook_43/check_network_speed.yml > ${ANSIBLEOUT}
fi
bandwidth=$(grep '0.00-10.00' ${ANSIBLEOUT} | grep -Eo '[0-9]*\.[0-9]*\sGbits/sec' | awk "NR==11")
echo -e "${bandwidth}"
log "NOTE: Bandwidth between bastion and master node is ${bandwidth}" result
cat ${ANSIBLEOUT} >> ${OUTPUT}
output+="$result"
bw_number=$(echo "$bandwidth" | awk -F. '{print $1}')
if [[ ${bw_number} -lt 1 ]]; then
log "WARNING: Bandwidth between bastion and master is below 1GB" result1
WARNING=1
printout "$result1"
fi
LOCALTEST=1
if [[ ${LOCALTEST} -eq 1 ]]; then
printout "$output"
fi
}
function check_subnet(){
output=""
failed=0
echo -e "\nChecking subnet" | tee -a ${OUTPUT}
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${hosts} playbook_311/check_subnet.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${hosts} playbook_43/check_subnet.yml > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "ERROR: Host ip not in range" result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
failed=1
else
log "[Passed]" result
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 ]]; then
printout "$output"
fi
if [[ ${failed} -eq 1 ]]; then
echo -e "These nodes failed the test/were unreachable:"
egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
do
:
echo "${line}" | awk '{print $1, $5, $6}'
done
fi
}
function check_dnsconfiguration(){
output=""
failed=0
echo -e "\nChecking DNS Configuration" | tee -a ${OUTPUT}
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${hosts} playbook_311/dnsconfig_check.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${hosts} playbook_43/dnsconfig_check.yml > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "ERROR: DNS is not properly setup. Could not find a proper nameserver in /etc/resolv.conf " result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
failed=1
else
log "[Passed]" result
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 ]]; then
printout "$output"
fi
if [[ ${failed} -eq 1 ]]; then
echo -e "These nodes failed the test/were unreachable:"
egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
do
:
echo "${line}" | awk '{print $1, $5, $6}'
done
fi
}
function check_processor() {
output=""
failed=0
echo -e "\nChecking Processor Type" | tee -a ${OUTPUT}
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${hosts} playbook_311/processor_check.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${hosts} playbook_43/processor_check.yml > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "ERROR: Processor type must be x86_64 or ppc64" result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
failed=1
else
log "[PASSED]" result
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 ]]; then
printout "$output"
fi
if [[ ${failed} -eq 1 ]]; then
echo -e "These nodes failed the test/were unreachable:"
egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
do
:
echo "${line}" | awk '{print $1, $5, $6}'
done
fi
}
function check_dockerdir_type(){
output=""
failed=0
echo -e "\nChecking XFS FSTYPE for docker storage" | tee -a ${OUTPUT}
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${hosts} playbook_311/dockerdir_type_check.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${hosts} playbook_43/dockerdir_type_check.yml > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "ERROR: Docker target filesystem must be formatted with ftype=1. Please reformat or move the docker location" result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
failed=1
else
log "[Passed]" result
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 ]]; then
printout "$output"
fi
if [[ ${failed} -eq 1 ]]; then
echo -e "These nodes failed the test/were unreachable:"
egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
do
:
echo "${line}" | awk '{print $1, $5, $6}'
done
fi
}
function check_dnsresolve(){
output=""
failed=0
echo -e "\nChecking hostname can resolve via DNS" | tee -a ${OUTPUT}
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${hosts} playbook_311/dnsresolve_check.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${hosts} playbook_43/dnsresolve_check.yml > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
if [[ `grep 'host: command not found' ${ANSIBLEOUT}` ]]; then
log "ERROR: \"host\" command does not exist on this machine. Please install command to run this check." result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
else
log "ERROR: hostname is not resolved via the DNS. Check /etc/resolve.conf " result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
fi
failed=1
else
log "[Passed]" result
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 ]]; then
printout "$output"
fi
if [[ ${failed} -eq 1 ]]; then
echo -e "These nodes failed the test/were unreachable:"
egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
do
:
echo "${line}" | awk '{print $1, $5, $6}'
done
fi
}
function check_gateway(){
output=""
failed=0
echo -e "\nChecking Default Gateway" | tee -a ${OUTPUT}
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${hosts} playbook_311/gateway_check.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${hosts} playbook_43/gateway_check.yml > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "ERROR: default gateway is not setup " result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
failed=1
else
log "[Passed]" result
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 ]]; then
printout "$output"
fi
if [[ ${failed} -eq 1 ]]; then
echo -e "These nodes failed the test/were unreachable:"
egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
do
:
echo "${line}" | awk '{print $1, $5, $6}'
done
fi
}
function check_hostname(){
output=""
failed=0
echo -e "\nChecking if hostname is in lowercase characters" | tee -a ${OUTPUT}
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${hosts} playbook_311/hostname_check.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${hosts} playbook_43/hostname_check.yml > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "ERROR: Only lowercase characters are supported in the hostname" result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
failed=1
else
log "[Passed]" result
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 ]]; then
printout "$output"
fi
if [[ ${failed} -eq 1 ]]; then
echo -e "These nodes failed the test/were unreachable:"
egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
do
:
echo "${line}" | awk '{print $1, $5, $6}'
done
fi
}
function check_disklatency(){
output=""
failed=0
echo -e "\nChecking Disk Latency" | tee -a ${OUTPUT}
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${hosts} playbook_311/disklatency_check.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${hosts} playbook_43/disklatency_check.yml > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "ERROR: Disk latency test failed. By copying 512 kB, the time must be shorter than 60s, recommended to be shorter than 10s." result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
failed=1
else
log "[Passed]" result
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 ]]; then
printout "$output"
fi
if [[ ${failed} -eq 1 ]]; then
echo -e "These nodes failed the test/were unreachable:"
egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
do
:
echo "${line}" | awk '{print $1, $5, $6}'
done
fi
}
function check_diskthroughput(){
output=""
failed=0
echo -e "\nChecking Disk Throughput" | tee -a ${OUTPUT}
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${hosts} playbook_311/diskthroughput_check.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${hosts} playbook_43/diskthroughput_check.yml > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "ERROR: Disk throughput test failed. By copying 1.1 GB, the time must be shorter than 35s, recommended to be shorter than 5s" result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
failed=1
else
log "[Passed]" result
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 ]]; then
printout "$output"
fi
if [[ ${failed} -eq 1 ]]; then
echo -e "These nodes failed the test/were unreachable:"
egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
do
:
echo "${line}" | awk '{print $1, $5, $6}'
done
fi
}
function check_unblocked_urls(){
output=""
echo -e "\nChecking connectivity to required links. This test should take a couple minutes" | tee -a ${OUTPUT}
BLOCKED=0
for i in "${URLS[@]}"
do
:
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${hosts} playbook_311/url_check.yml -e "url=$i" > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${hosts} playbook_43/url_check.yml -e "url=$i" > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "WARNING: $i is not reachable. Enabling proxy might fix this issue." result
cat ${ANSIBLEOUT} >> ${OUTPUT}
WARNING=1
BLOCKED=1
printout "$result"
failed=1
if [[ ${failed} -eq 1 ]]; then
echo -e "These nodes failed the test/were unreachable:"
egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
do
:
echo "${line}" | awk '{print $1, $5, $6}'
done
fi
fi
done
if [[ ${BLOCKED} -eq 0 ]]; then
log "[Passed]" result
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 && ${BLOCKED} -eq 0 ]]; then
printout "$output"
fi
# if [[ ${failed} -eq 1 ]]; then
# echo -e "These nodes failed the test/were unreachable:"
# egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
# do
# :
# echo "${line}" | awk '{print $1, $5, $6}'
# done
# fi
}
function check_ibmartifactory(){
output=""
echo -e "\nChecking connectivity to IBM Artifactory servere" | tee -a ${OUTPUT}
ansible-playbook -i hosts_openshift -l ${hosts} playbook/ibmregistry_check.yml > ${ANSIBLEOUT}
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "WARNING: cp.icr.io is not reachable. Enabling proxy might fix this issue." result
cat ${ANSIBLEOUT} >> ${OUTPUT}
WARNING=1
else
log "[Passed]" result
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 ]]; then
printout "$output"
fi
}
function check_redhatartifactory(){
output=""
echo -e "\nChecking connectivity to RedHat Artifactory servere" | tee -a ${OUTPUT}
ansible-playbook -i hosts_openshift -l ${hosts} playbook/redhatregistry_check.yml > ${ANSIBLEOUT}
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "WARNING: registry.redhat.io is not reachable. Enabling proxy might fix this issue." result
cat ${ANSIBLEOUT} >> ${OUTPUT}
WARNING=1
else
log "[Passed]" result
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 ]]; then
printout "$output"
fi
}
function check_fix_clocksync(){
output=""
failed=0
#if [[ ${FIX} -eq 1 ]]; then
# echo -e "\nFixing timesync status" | tee -a ${OUTPUT}
# ansible-playbook -i hosts_openshift -l ${hosts} playbook/clocksync_fix.yml > ${ANSIBLEOUT}
#else
echo -e "\nChecking timesync status. This is checking the bastion node." | tee -a ${OUTPUT}
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${load_balance} playbook_311/clocksync_check.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${load_balance} playbook_43/clocksync_check.yml > ${ANSIBLEOUT}
fi
# fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "ERROR: System clock is currently not synchronised, use ntpd or chrony to sync time" result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
failed=1
else
log "[Passed]" result
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 ]]; then
printout "$output"
fi
if [[ ${failed} -eq 1 ]]; then
echo -e "These nodes failed the test/were unreachable:"
egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
do
:
echo "${line}" | awk '{print $1, $5, $6}'
done
fi
}
function check_kernel_vm(){
output=""
failed=0
echo -e "\nChecking kernel virtual memory on compute nodes" | tee -a ${OUTPUT}
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${compute} playbook_311/kern_vm_check.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${compute} playbook_43/kern_vm_check.yml > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "ERROR: Kernel virtual memory on compute nodes should be set to at least 262144. Please update the vm.max_map_count parameter in /etc/sysctl.conf" result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
failed=1
else
log "[Passed]" result
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 ]]; then
printout "$output"
fi
if [[ ${failed} -eq 1 ]]; then
echo -e "These nodes failed the test/were unreachable:"
egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
do
:
echo "${line}" | awk '{print $1, $5, $6}'
done
fi
}
function check_message_limit(){
output=""
failed=0
echo -e "\nChecking message limits on compute nodes" | tee -a ${OUTPUT}
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${compute} playbook_311/max_msg_size_check.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${compute} playbook_43/max_msg_size_check.yml > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "ERROR: Maximum allowable size of messages in bytes should be set to at least 65536. Please update the kernel.msgmax parameter in /etc/sysctl.conf" result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
ERR=1
failed=1
printout "$result"
fi
if [[ ${failed} -eq 1 ]]; then
echo -e "These nodes failed the test/were unreachable:"
egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
do
:
echo "${line}" | awk '{print $1, $5, $6}'
done
fi
failed=0
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${compute} playbook_311/max_queue_size_check.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${compute} playbook_43/max_queue_size_check.yml > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "ERROR: Maximum allowable size of message queue in bytes should be set to at least 65536. Please update the kernel.msgmnb parameter in /etc/sysctl.conf" result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
ERR=1
failed=1
printout "$result"
fi
if [[ ${failed} -eq 1 ]]; then
echo -e "These nodes failed the test/were unreachable:"
egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
do
:
echo "${line}" | awk '{print $1, $5, $6}'
done
fi
failed=0
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${compute} playbook_311/max_num_queue_check.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${compute} playbook_43/max_num_queue_check.yml > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "ERROR: Maximum number of queue identifiers should be set to at least 32768. Please update the kernel.msgmni parameter in /etc/sysctl.conf" result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
ERR=1
failed=1
printout "$result"
fi
if [[ ${failed} -eq 1 ]]; then
echo -e "These nodes failed the test/were unreachable:"
egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
do
:
echo "${line}" | awk '{print $1, $5, $6}'
done
fi
if [[ ${ERR} -eq 0 ]]; then
log "[Passed]" result
fi
LOCALTEST=1
output+="$result"
if [[ ${LOCALTEST} -eq 1 && ${ERR} -eq 0 ]]; then
printout "$output"
fi
}
function check_shm_limit(){
output=""
failed=0
echo -e "\nChecking shared memory limits on compute nodes" | tee -a ${OUTPUT}
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${compute} playbook_311/tot_page_shm_check.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${compute} playbook_43/tot_page_shm_check.yml > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "ERROR: kernel.shmall should be set to at least 33554432. Please update /etc/sysctl.conf" result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
ERR=1
failed=1
printout "$result"
fi
if [[ ${failed} -eq 1 ]]; then
echo -e "These nodes failed the test/were unreachable:"
egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
do
:
echo "${line}" | awk '{print $1, $5, $6}'
done
fi
failed=0
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${compute} playbook_311/max_shm_check.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${compute} playbook_43/max_shm_check.yml > ${ANSIBLEOUT}
fi
if [[ `egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT}` ]]; then
log "ERROR: kernel.shmmax should be set to at least 68719476736. Please update /etc/sysctl.conf" result
cat ${ANSIBLEOUT} >> ${OUTPUT}
ERROR=1
ERR=1
failed=1
printout "$result"
fi
if [[ ${failed} -eq 1 ]]; then
echo -e "These nodes failed the test/were unreachable:"
egrep 'unreachable=[1-9]|failed=[1-9]' ${ANSIBLEOUT} | while read line
do
:
echo "${line}" | awk '{print $1, $5, $6}'
done
fi
failed=0
if [[ ${OCP_311} -eq 1 ]] ; then
ansible-playbook -i hosts_openshift -l ${compute} playbook_311/max_num_shm_check.yml > ${ANSIBLEOUT}
else
ansible-playbook -i hosts_openshift -l ${compute} playbook_43/max_num_shm_check.yml > ${ANSIBLEOUT}