-
Notifications
You must be signed in to change notification settings - Fork 37
/
check_kubernetes.sh
executable file
·785 lines (719 loc) · 27 KB
/
check_kubernetes.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
#!/bin/bash
# shellcheck disable=SC2181,SC2207,SC2199,SC2076
##########################
# Perform checks against Kubernetes API or with tab help of kubectl utility
# Designed for usage with Nagios, Icinga, Zabbix, Shinken... Whatever.
#
# 2018/06/28 Vitaly Agapov <[email protected]>
# 2020 Roosembert Palacios <[email protected]>
##########################
usage() {
cat <<- EOF
Usage $0 [-m <MODE>|-h] [-o <TIMEOUT>] [-H <APISERVER> [-T <TOKEN>|-t <TOKENFILE>]] [-K <KUBE_CONFIG>]
[-N <NAMESPACE>] [-n <NAME>] [-w <WARN>] [-c <CRIT>] [-v]
Options are:
-m MODE Which check to perform
-H APISERVER API URL to query, kubectl is used if this option is not set
-T TOKEN Authorization token for API
-t TOKENFILE Path to file with token in it
-K KUBE_CONFIG Path to kube-config file for kubectl utility
-N NAMESPACE Optional namespace for some modes. By default all namespaces will be used
-n NAME Optional deployment name or pod app label depending on the mode being used. By default all objects will be checked
-o TIMEOUT Timeout in seconds; default is 15
-w WARN Warning threshold for
- TLS expiration days for TLS mode; default is 30
- Pod restart count in pods mode; default is 30
- Job failed count in jobs mode; default is 1
- Pvc storage utilization; default is 80%
- API cert expiration days for apicert mode; default is 30
-c CRIT Critical threshold for
- TLS expiration days for TLS mode; default is 0
- Pod restart count (in pods mode); default is 150
- Unbound Persistent Volumes in unboundpvs mode; default is 5
- Job failed count in jobs mode; default is 2
- Pvc storage utilization; default is 90%
- API cert expiration days for apicert mode; default is 15
-M EXIT_CODE Exit code when resource is missing; default is 2 (CRITICAL)
-v Show current Version
-h Show this help and exit
Modes are:
apiserver Not for kubectl, should be used for each apiserver independently
apicert Check the apicert expiration date
nodes Check for active nodes
daemonsets Check for daemonsets readiness
deployments Check for deployments availability
jobs Check for failed jobs
pods Check for restart count of containters in the pods
replicasets Check for replicasets readiness
statefulsets Check for statefulsets readiness
tls Check for tls secrets expiration dates
pvc Check for pvc utilization
unboundpvs Check for unbound persistent volumes
EOF
exit 2
}
VERSION="v1.3.2"
TIMEOUT=15
unset NAME
die() {
echo "$1"
exit "${2:-2}"
}
while getopts ":m:M:H:T:t:K:N:n:o:c:w:h:v" arg; do
case $arg in
h) usage ;;
m) MODE="$OPTARG" ;;
M) MISSING_EXITCODE="${OPTARG}" ;;
o) TIMEOUT="${OPTARG}" ;;
H) APISERVER="${OPTARG%/}" ;;
T) TOKEN="$OPTARG" ;;
t) TOKENFILE="$OPTARG" ;;
K) export KUBECONFIG="$OPTARG" ;;
N) NAMESPACE="$OPTARG" ;;
n) NAME="$OPTARG" ;;
w) WARN="$OPTARG" ;;
c) CRIT="$OPTARG" ;;
v) echo "check_kubernetes.sh Version: $VERSION" && exit 0 ;;
*) usage ;;
esac
done
[ -z "$MODE" ] && usage
MISSING_EXITCODE="${MISSING_EXITCODE:-2}"
if [ "$APISERVER" ]; then
[ -z "$TOKEN" ] && [ -z "$TOKENFILE" ] && usage
else
command -v kubectl &>/dev/null || die "CRITICAL: kubectl is required as api-server is not defined"
fi
command -v jq &>/dev/null || die "CRITICAL: jq is required"
getJSON() {
api_path=$1
if [ "$APISERVER" ]; then
if [ -z "$TOKEN" ]; then
TOKEN="$(cat "$TOKENFILE")"
fi
data=$(timeout "$TIMEOUT" curl -sk -H "Authorization: Bearer $TOKEN" "$APISERVER/$api_path")
code=$?
if [ $code = 124 ]; then
die "Timed out after $TIMEOUT seconds"
fi
if [[ "$api_path" =~ healthz ]]; then
echo "$data"
return
fi
kind=$(echo "$data" | jq -r ".kind")
if [ "$kind" = Status ]; then
message=$(echo "$data" | jq -r ".message")
die "API call failed: $message"
elif [ -z "$kind" ]; then
die "Could not access API"
fi
else
data=$(eval timeout "$TIMEOUT" kubectl get --raw "/$api_path" 2>&1)
code=$?
if [ $code -gt 0 ]; then
if [ $code = 124 ]; then
die "Timed out after $TIMEOUT seconds"
else
die "${data/#\{*\}/}"
fi
fi
fi
echo "$data" | sed 's/^[[:blank:]]*//' | tr -d '\n'
}
OUTPUT=""
EXITCODE=0
if [ "$NAMESPACE" ]; then
api_ns="/namespaces/$NAMESPACE"
fi
mode_apiserver() {
if [ -z "$APISERVER" ]; then
die "Apiserver URL should be defined in this mode"
fi
data=$(getJSON "healthz")
[ $? -gt 0 ] && die "$data"
if [ "$data" = ok ]; then
OUTPUT="OK. Kubernetes apiserver is healthy"
EXITCODE=0
else
data=$(echo "$data" | grep "\[\-\]")
OUTPUT="CRITICAL. Kubernetes apiserver health is $data"
EXITCODE=2
fi
}
mode_apicert() {
if [ -z "$APISERVER" ]; then
die "Apiserver URL should be defined in this mode"
fi
WARN=${WARN:-30}
CRIT=${CRIT:-15}
APIHOST=$(echo "$APISERVER" | awk -F[/:] '{print $4}')
APIPORT=$(echo "$APISERVER" | awk -F[/:] '{print $5}')
APIPORT=${APIPORT:-443}
enddate=$(echo | openssl s_client -connect "$APIHOST:$APIPORT" 2>/dev/null | openssl x509 -enddate -noout 2>/dev/null | sed 's/notAfter=//' | xargs -r -0 date +%s -d)
if [ -z "$enddate" ]; then
echo "API cert expiration date is UNKNOWN"
exit 3
fi
nowdate=$(date +%s)
diff=$((($enddate-$nowdate)/24/3600))
OUTPUT="API cert expires in $diff days"
if [ "$diff" -gt "$WARN" ] && [ "$diff" -gt "$CRIT" ]; then
OUTPUT="OK. $OUTPUT"
elif [ "$diff" -le "$WARN" ] && [ "$diff" -gt "$CRIT" ]; then
OUTPUT="WARNING. $OUTPUT"
EXITCODE=1
elif [ "$diff" -le "$CRIT" ]; then
OUTPUT="CRITICAL. $OUTPUT"
EXITCODE=2
fi
}
mode_nodes() {
data="$(getJSON "api/v1/nodes")"
[ $? -gt 0 ] && die "$data"
nodes=($(echo "$data" | jq -r ".items[].metadata.name"))
for node in "${nodes[@]}"; do
ready="$(echo "$data" | jq -r ".items[] | select(.metadata.name==\"$node\") | \
.status.conditions[] | select(.type==\"Ready\") | \
.status")"
if [ "$ready" != True ]; then
EXITCODE=2
OUTPUT="${OUTPUT}Node $node not ready. "
fi
for condition in OutOfDisk MemoryPressure DiskPressure; do
state="$(echo "$data" | jq -r ".items[] | select(.metadata.name==\"$node\") | \
.status.conditions[] | select(.type==\"$condition\") | \
.status")"
if [ "$state" = True ]; then
[ $EXITCODE -lt 1 ] && EXITCODE=1
OUTPUT="${OUTPUT}$node $condition. "
fi
done
done
if [ $EXITCODE = 0 ]; then
if [ -z "${nodes[*]}" ]; then
OUTPUT="No nodes found"
EXITCODE="$MISSING_EXITCODE"
else
OUTPUT="OK. ${#nodes[@]} nodes are ready"
fi
fi
}
mode_unboundpvs() {
CRIT=${CRIT:-5}
data=$(getJSON "api/v1/persistentvolumes")
[ $? -gt 0 ] && die "$data"
declare -A pvsArr unboundPvsArr
while IFS="=" read -r key value; do
pvsArr[$key]="$value"
done < <(echo "$data" | jq -r ".items[] | \"\(.metadata.name)=\(.status.phase)\"")
while IFS=":" read -r name status claimRef; do
OUTPUT="Persistent volume $name is $status (referenced by $claimRef)\n$OUTPUT"
unboundPvsArr[$name]="$status:$claimRef"
done < <(echo "$data" | \
jq -r ".items[] | \
select(.status.phase!=\"Bound\") | \
\"\(.metadata.name):\(.status.phase):\(.spec.claimRef.uid)\"")
if [ ${#unboundPvsArr[*]} -gt 0 ]; then
if [ ${#unboundPvsArr[*]} -ge "$CRIT" ]; then
OUTPUT="CRITICAL. Unbound persistentvolumes:\n$OUTPUT"
EXITCODE=2
else
OUTPUT="WARNING. Unbound persistentvolumes:\n$OUTPUT"
EXITCODE=1
fi
else
OUTPUT="OK. ${#pvsArr[*]} persistentvolumes correctly bound."
fi
}
mode_pvc() {
WARN=${WARN:-80}
CRIT=${CRIT:-90}
WARN_ERROR=0
CRIT_ERROR=0
data="$(getJSON "api/v1/nodes")"
[ $? -gt 0 ] && die "$data"
nodes=($(echo "$data" | jq -r ".items[].metadata.name"))
data=$(for node in "${nodes[@]}"; do getJSON "api/v1/nodes/$node/proxy/stats/summary"; done)
volumes=$(echo "$data" | jq -s '[.[].pods[].volume[]? | select(has("pvcRef")) | {name: .pvcRef.name, namespace: .pvcRef.namespace, capacityBytes, usedBytes, availableBytes, percentageUsed: (.usedBytes / .capacityBytes * 100) | round}] | sort_by(.name) | unique')
if [ "$NAMESPACE" ]; then
volumes=$(echo "$volumes" | jq "[.[] | select(.namespace==\"$NAMESPACE\")]")
fi
length=$(echo "$volumes" | jq length)
for (( n=0; n<length; n++ )); do
volume=$(echo "$volumes" | jq ".[$n]")
volume_name=$(echo "$volume" | jq -r '.namespace + "/" + .name')
volume_bytes_utilization=$(echo "$volume" | jq -r '.percentageUsed')
volume_bytes_capacity=$(echo "$volume" | jq -r '.capacityBytes')
volume_bytes_used=$(echo "$volume" | jq -r '.usedBytes')
if [ "$volume_bytes_utilization" -gt "$WARN" ] && [ "$volume_bytes_utilization" -lt "$CRIT" ]; then
OUTPUT="${OUTPUT} High storage utilization on pvc $volume_name: $volume_bytes_utilization% ($volume_bytes_used/$volume_bytes_capacity Bytes)"
((WARN_ERROR++))
fi
if [ "$volume_bytes_utilization" -gt "$CRIT" ]; then
OUTPUT="${OUTPUT} Very high storage utilization on pvc $volume_name: $volume_bytes_utilization% ($volume_bytes_used/$volume_bytes_capacity Bytes)"
((CRIT_ERROR++))
fi
done
if [ "$WARN_ERROR" -eq "0" ] && [ "$CRIT_ERROR" -eq "0" ]; then
echo "OK. No problems on $length pvc"
elif [ "$WARN_ERROR" -ne "0" ] && [ "$CRIT_ERROR" -eq "0" ]; then
echo "WARNING.${OUTPUT}"
exit 1
elif [ "$CRIT_ERROR" -ne "0" ]; then
echo "CRITICAL.${OUTPUT}"
exit 2
else
echo "ERROR.${OUTPUT}"
exit 3
fi
}
mode_tls() {
WARN=${WARN:-30}
CRIT=${CRIT:-0}
count_ok=0
count_warn=0
count_crit=0
nowdate=$(date +%s)
fulldata=$(getJSON "api/v1$api_ns/secrets/")
[ $? -gt 0 ] && die "$fulldata"
data=$(echo "$fulldata" | \
jq -r ".items[] | select (.type==\"kubernetes.io/tls\")")
if [ "$NAME" ]; then
namespaces=($(echo "$data" | \
jq -r " select(.metadata.name==\"$NAME\") | \
.metadata.namespace" | sort -u))
else
namespaces=($(echo "$data" | jq -r ".metadata.namespace" | sort -u))
fi
for ns in "${namespaces[@]}"; do
if [ "$NAME" ]; then
certs=("$NAME")
else
certs=($(echo "$data" | jq -r "select(.metadata.namespace==\"$ns\") | \
.metadata.name"))
fi
for cert in "${certs[@]}"; do
notafter=$(echo "$data" | \
jq -r " select(.metadata.namespace==\"$ns\" and .metadata.name==\"$cert\") | \
.data.\"tls.crt\"" | \
base64 -d 2>/dev/null | \
openssl x509 -enddate -noout | \
sed 's/notAfter=//')
enddate=$(date -d "$notafter" +%s)
diff="$((enddate-nowdate))"
if [ "$diff" -le 0 ]; then
((count_crit++))
EXITCODE=2
OUTPUT="$OUTPUT $ns/$cert is expired."
elif [ "$diff" -le "$((CRIT*24*3600))" ]; then
((count_crit++))
EXITCODE=2
OUTPUT="$OUTPUT $ns/$cert is about to expire in $((diff/3600/24)) days."
elif [ "$diff" -le "$((WARN*24*3600))" ]; then
((count_warn++))
if [ "$EXITCODE" == 0 ]; then
EXITCODE=1
fi
OUTPUT="$OUTPUT $ns/$cert is about to expire in $((diff/3600/24)) days."
else
((count_ok++))
fi
done
done
if [ $EXITCODE = 0 ]; then
if [ -z "$ns" ]; then
OUTPUT="No TLS certs found"
EXITCODE="$MISSING_EXITCODE"
else
if [ $count_ok -gt 1 ]; then
OUTPUT="OK. $count_ok TLS secrets are OK"
else
OUTPUT="OK. TLS secret is OK"
fi
fi
fi
}
mode_pods() {
WARN=${WARN:-30}
CRIT=${CRIT:-150}
if [ "$WARN" -gt "$CRIT" ]; then
WARN=$CRIT
fi
count_ready=0
count_succeeded=0
count_failed=0
bad_container=""
data=$(getJSON "api/v1$api_ns/pods/")
[ $? -gt 0 ] && die "$data"
if [ "$NAME" ]; then
namespaces=($(echo "$data" | \
jq -r ".items[] | select(.metadata.labels.app==\"$NAME\") | \
.metadata.namespace" | \
sort -u))
else
namespaces=($(echo "$data" | \
jq -r ".items[].metadata.namespace" | \
sort -u))
fi
for ns in "${namespaces[@]}"; do
nsdata="$(echo "$data" | jq -c -r ".items[] | select(.metadata.namespace==\"$ns\")")"
if [ "$NAME" ]; then
pods=($(echo "$nsdata" | \
jq -r "select(.status.reason!=\"Evicted\" \
and .metadata.labels.app==\"$NAME\") | \
.metadata.name"))
else
pods=($(echo "$nsdata" | \
jq -r "select(.status.reason!=\"Evicted\") | \
.metadata.name"))
fi
for pod in "${pods[@]}"; do
containers=($(echo "$nsdata" | \
jq -r "select(.metadata.name==\"$pod\") | \
.status.containerStatuses[]?.name"))
for container in "${containers[@]}"; do
max_restart_count=0
restart_count=$(echo "$nsdata" | \
jq -r "select(.metadata.name==\"$pod\") | \
.status.containerStatuses[] | \
select(.name==\"$container\") | \
.restartCount")
if [ "$restart_count" -gt "$max_restart_count" ]; then
bad_container="$ns/$pod/$container"
max_restart_count=$restart_count
fi
done
count_status=$(echo "$nsdata" | \
jq -r "select(.metadata.name==\"$pod\") | \
.status.phase")
if [ "$count_status" == "Running" ]; then
((count_ready++))
elif [ "$count_status" == "Succeeded" ]; then
((count_succeeded++))
else
((count_failed++))
fi
if [ "$restart_count" -ge "$WARN" ]; then
OUTPUT="${OUTPUT}Container $bad_container: $restart_count restarts.\n"
EXITCODE=1
if [ "$restart_count" -ge "$CRIT" ]; then
EXITCODE=2
fi
fi
done
done
if [ $EXITCODE = 0 ]; then
if [ -z "$ns" ]; then
OUTPUT="No pods found"
EXITCODE="$MISSING_EXITCODE"
else
OUTPUT="OK. $count_ready pods ready, $count_succeeded pods succeeded, $count_failed pods not ready\n${OUTPUT}"
fi
else
if [ $EXITCODE = 1 ]; then
OUTPUT="WARNING. $count_ready pods ready, $count_succeeded pods succeeded, $count_failed pods not ready\n${OUTPUT}"
else
OUTPUT="ERROR. $count_ready pods ready, $count_succeeded pods succeeded, $count_failed pods not ready\n${OUTPUT}"
fi
fi
}
mode_deployments() {
count_avail=0
count_failed=0
rawdata=$(getJSON "apis/apps/v1$api_ns/deployments/")
[ $? -gt 0 ] && die "$rawdata"
# deflate the data
data="$(echo "$rawdata" | jq -r '.items[] | {name: .metadata.name, namespace: .metadata.namespace, status: .status.conditions}')"
if [ "$NAME" ]; then
namespaces=($(echo "$data" | jq -r "select(.name==\"$NAME\") | \
.namespace" | sort -u))
else
namespaces=($(echo "$data" | jq -r ".namespace" | sort -u))
fi
for ns in "${namespaces[@]}"; do
nsdata="$(echo "$data" | jq -c -r "select(.namespace==\"$ns\")")"
availdeps=($(echo "$nsdata" | jq -r "{name: .name, status: .status[]|select(.type==\"Available\")} | \
select(.status.status == \"True\") | .name"))
if [ "$NAME" ]; then
deps=("$NAME")
else
deps=($(echo "$nsdata" | jq -r ".name"))
fi
for dep in "${deps[@]}"; do
if [[ " ${availdeps[@]} " =~ " $dep " ]]; then
((count_avail++))
else
((count_failed++))
EXITCODE=2
OUTPUT="Deployment $ns/$dep"
fi
done
done
if [ $EXITCODE = 0 ]; then
if [ -z "$ns" ]; then
OUTPUT="No deployments found"
EXITCODE="$MISSING_EXITCODE"
else
if [ $count_avail -gt 1 ]; then
OUTPUT="OK. $count_avail deployments are available"
else
OUTPUT="OK. Deployment available"
fi
fi
else
if [ $count_failed = 1 ]; then
OUTPUT="$OUTPUT not available"
else
OUTPUT="$OUTPUT and $((--count_failed)) more are not available"
fi
fi
}
mode_daemonsets() {
count_avail=0
count_failed=0
data=$(getJSON "apis/apps/v1$api_ns/daemonsets/")
[ $? -gt 0 ] && die "$data"
if [ "$NAME" ]; then
namespaces=($(echo "$data" | jq -r ".items[] | select(.metadata.name==\"$NAME\") | \
.metadata.namespace" | sort -u))
else
namespaces=($(echo "$data" | jq -r ".items[].metadata.namespace" | sort -u))
fi
for ns in "${namespaces[@]}"; do
if [ "$NAME" ]; then
daemonsets=("$NAME")
else
daemonsets=($(echo "$data" | jq -r ".items[] | select(.metadata.namespace==\"$ns\") | \
.metadata.name"))
fi
for ds in "${daemonsets[@]}"; do
declare -A statusArr
while IFS="=" read -r key value; do
statusArr[$key]="$value"
done < <(echo "$data" | jq -r ".items[] | \
select(.metadata.namespace==\"$ns\" and .metadata.name==\"$ds\") | \
.status | to_entries | map(\"\(.key)=\(.value)\") | \
.[]")
if [ "$EXITCODE" == 0 ]; then
OUTPUT="Daemonset $ns/$ds ${statusArr[numberReady]}/${statusArr[desiredNumberScheduled]} ready"
fi
if [ "${statusArr[numberReady]}" != "${statusArr[desiredNumberScheduled]}" ]; then
((count_failed++))
EXITCODE=2
else
((count_avail++))
fi
done
done
if [ $EXITCODE = 0 ]; then
if [ -z "$ns" ]; then
OUTPUT="No daemonsets found"
EXITCODE="$MISSING_EXITCODE"
else
if [ $count_avail -gt 1 ]; then
OUTPUT="OK. $count_avail daemonsets are ready"
else
OUTPUT="OK. $OUTPUT"
fi
fi
else
if [ $count_failed = 1 ]; then
OUTPUT="$OUTPUT"
else
OUTPUT="${OUTPUT}. $((--count_failed)) more are not ready"
fi
fi
}
mode_replicasets() {
count_avail=0
count_failed=0
data=$(getJSON "apis/apps/v1$api_ns/replicasets/")
[ $? -gt 0 ] && die "$data"
if [ "$NAME" ]; then
namespaces=($(echo "$data" | \
jq -r ".items[] | select(.metadata.name==\"$NAME\") | \
.metadata.namespace" | \
sort -u))
else
namespaces=($(echo "$data" | jq -r ".items[].metadata.namespace" | sort -u))
fi
for ns in "${namespaces[@]}"; do
if [ "$NAME" ]; then
replicasets=("$NAME")
else
replicasets=($(echo "$data" | \
jq -r ".items[] | select(.metadata.namespace==\"$ns\") | \
.metadata.name"))
fi
for rs in "${replicasets[@]}"; do
declare -A statusArr
while IFS="=" read -r key value; do
statusArr[$key]="$value"
done < <(echo "$data" | \
jq -r ".items[] | select(.metadata.namespace==\"$ns\" and .metadata.name==\"$rs\") | \
.status | to_entries | map(\"\(.key)=\(.value)\") | .[]")
OUTPUT="Replicaset $ns/$rs ${statusArr[readyReplicas]}/${statusArr[availableReplicas]} ready"
if [ "${statusArr[readyReplicas]}" != "${statusArr[availableReplicas]}" ]; then
((count_failed++))
EXITCODE=2
else
((count_avail++))
fi
done
done
if [ $EXITCODE = 0 ]; then
if [ -z "$ns" ]; then
OUTPUT="No replicasets found"
EXITCODE="$MISSING_EXITCODE"
else
if [ $count_avail -gt 1 ]; then
OUTPUT="OK. $count_avail replicasets are ready"
else
OUTPUT="OK. $OUTPUT"
fi
fi
else
if [ $count_failed = 1 ]; then
OUTPUT="$OUTPUT"
else
OUTPUT="${OUTPUT}. $((--count_failed)) more are not ready"
fi
fi
}
mode_statefulsets() {
count_avail=0
count_failed=0
data=$(getJSON "apis/apps/v1$api_ns/statefulsets/")
[ $? -gt 0 ] && die "$data"
if [ "$NAME" ]; then
namespaces=($(echo "$data" | \
jq -r ".items[] | select(.metadata.name==\"$NAME\") | \
.metadata.namespace" | \
sort -u))
else
namespaces=($(echo "$data" | \
jq -r ".items[].metadata.namespace" | \
sort -u))
fi
for ns in "${namespaces[@]}"; do
if [ "$NAME" ]; then
statefulsets=("$NAME")
else
statefulsets=($(echo "$data" | \
jq -r ".items[] | select(.metadata.namespace==\"$ns\") | \
.metadata.name"))
fi
for sts in "${statefulsets[@]}"; do
declare -A statusArr
while IFS="=" read -r key value; do
statusArr[$key]="$value"
done < <(echo "$data" | \
jq -r ".items[] | select(.metadata.namespace==\"$ns\" and .metadata.name==\"$sts\") | \
.status | to_entries | map(\"\(.key)=\(.value)\") | .[]")
if [ "$EXITCODE" == 0 ]; then
OUTPUT="Statefulset $ns/$sts ${statusArr[availableReplicas]}/${statusArr[currentReplicas]} ready\n"
fi
if [ "${statusArr[availableReplicas]}" != "${statusArr[currentReplicas]}" ]; then
((count_failed++))
EXITCODE=2
else
((count_avail++))
fi
done
done
if [ $EXITCODE = 0 ]; then
if [ -z "$ns" ]; then
OUTPUT="No statefulsets found"
EXITCODE="$MISSING_EXITCODE"
else
if [ $count_avail -gt 1 ]; then
OUTPUT="OK. $count_avail statefulsets are ready"
else
OUTPUT="OK. $OUTPUT"
fi
fi
else
if [ $count_failed = 1 ]; then
OUTPUT="$OUTPUT"
else
OUTPUT="${OUTPUT}. $((--count_failed)) more are not ready"
fi
fi
}
mode_jobs() {
WARN=${WARN:-1}
CRIT=${CRIT:-2}
total_jobs=0
declare -i total_failed_count=0
declare -i job_fail_count
data=$(getJSON "apis/batch/v1$api_ns/jobs/")
[ $? -gt 0 ] && die "$data"
if [ "$NAME" ]; then
namespaces=($(echo "$data" | \
jq -r ".items[] | select(.metadata.name==\"$NAME\") | \
.metadata.namespace" | \
sort -u))
else
namespaces=($(echo "$data" | \
jq -r ".items[].metadata.namespace" | \
sort -u))
fi
for ns in "${namespaces[@]}"; do
if [ "$NAME" ]; then
jobs=("$NAME")
else
jobs=($(echo "$data" | \
jq -r ".items[] | select(.metadata.namespace==\"$ns\") | \
.metadata.name"))
fi
for job in "${jobs[@]}"; do
((total_jobs++))
job_fail_count=$(echo "$data" | jq -r ".items[] | select(.metadata.namespace==\"$ns\" and .status.failed and .metadata.name==\"$job\") | .status.failed")
total_failed_count="$((total_failed_count+job_fail_count))"
if [ "$job_fail_count" -ge "${WARN}" ]; then
OUTPUT="${OUTPUT}Job $ns/$job has $job_fail_count failures\n"
EXITCODE=1
elif [ "$job_fail_count" -ge "${CRIT}" ]; then
EXITCODE=2
fi
done
if [ "$total_failed_count" -ge "${CRIT}" ]; then
EXITCODE=2
elif [ "$total_failed_count" -ge "${WARN}" ]; then
EXITCODE=1
fi
done
if [ $EXITCODE = 0 ]; then
if [ -z "$ns" ]; then
OUTPUT="No jobs found"
else
OUTPUT="OK. $total_jobs checked. ${total_failed_count} failed jobs is below threshold\n"
fi
else
if [ "$EXITCODE" -eq 1 ] ; then
OUTPUT="WARNING. ${OUTPUT}"
elif [ "$EXITCODE" -ge 2 ] ; then
OUTPUT="CRITICAL. ${OUTPUT}"
fi
if [ -z "$NAME" ] && [ "$EXITCODE" -ge 1 ] ; then
OUTPUT="${OUTPUT}${total_failed_count} jobs have failed"
fi
fi
}
case "$MODE" in
(apiserver) mode_apiserver ;;
(apicert) mode_apicert ;;
(daemonsets) mode_daemonsets ;;
(deployments) mode_deployments ;;
(nodes) mode_nodes ;;
(unboundpvs) mode_unboundpvs ;;
(pods) mode_pods ;;
(replicasets) mode_replicasets ;;
(statefulsets) mode_statefulsets ;;
(tls) mode_tls ;;
(jobs) mode_jobs ;;
(pvc) mode_pvc ;;
(*) usage ;;
esac
printf "$OUTPUT"
exit $EXITCODE