mirror of
https://github.com/mr0xb/dotfiles.git
synced 2026-08-27 19:34:57 -04:00
8 lines
383 B
Shell
8 lines
383 B
Shell
kutil () {
|
|
for host in $(kubectl get nodes --no-headers | cut -d' ' -f1)
|
|
do
|
|
echo "$host - $(kubectl get nodes -o jsonpath='{.metadata.labels.topology\.kubernetes\.io/zone}' $host)"
|
|
kubectl describe node "$host" | grep --color Allocated -A 5 | grep --color -ve Event -ve Allocated -ve percent -ve --
|
|
echo
|
|
done
|
|
}
|