-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathbiosversion
executable file
·33 lines (31 loc) · 1.27 KB
/
biosversion
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
#!/usr/bin/env bash
# description: Show the nodes' BIOS version
[ -z ${UTILSFILE} ] && source $(echo "$(dirname ${0})/../utils")
# Check BIOS version to begin with
if oc auth can-i debug node >/dev/null 2>&1; then
msg "Checking bios versions (${BLUE}using oc debug, it can take a while${NOCOLOR})"
# shellcheck disable=SC2016
for node in $(oc get nodes -o go-template='{{range .items}}{{$node := .}}{{range .status.conditions}}{{if eq .type "Ready"}}{{if eq .status "True"}}node/{{$node.metadata.name}}{{"\n"}}{{end}}{{end}}{{end}}{{end}}'); do
# See https://medium.com/@robert.i.sandor/getting-started-with-parallelization-in-bash-e114f4353691
((i = i % PARALLELJOBS))
((i++ == 0)) && wait
(
ocdebugorwait # Pause for no OC debug running
if ! BIOSVER=$(oc debug --image="${OCDEBUGIMAGE}" "${node}" -- chroot /host sh -c "cat /sys/class/dmi/id/bios_version" 2>/dev/null); then
msg "${ORANGE}Error running oc debug in ${node}${NOCOLOR}"
else
if [ -n "${BIOSVER}" ]; then
msg "${node}: ${BIOSVER}"
else
msg "Couldn't found /sys/class/dmi/id/bios_version in ${node}"
fi
fi
) &
done
wait
exit ${OCINFO}
else
msg "Couldn't debug nodes, check permissions"
exit ${OCSKIP}
fi
exit ${OCUNKNOWN}