Added kube-restarting

Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
Marcus Noble 2022-02-07 12:26:58 +00:00
parent ecb3beec8f
commit 4b006c5c43
Signed by: AverageMarcus
GPG Key ID: B8F2DB8A7AEBAF78
1 changed files with 35 additions and 0 deletions

35
home/.bin/kube-restarting Executable file
View File

@ -0,0 +1,35 @@
#!/usr/bin/env bash
set -e
NAMESPACE="$(kubectl config view --minify --output 'jsonpath={..namespace}')"
NAMESPACE="-A"
print_usage() {
echo "kube-restarting - Show all pods with restarts"
echo " "
echo "kube-restarting [options]"
echo " "
echo "Options:"
echo "-h, --help show this help text"
echo "-n, --namespace the namespace the to search in (searches all if not set)"
}
while test $# -gt 0; do
case "$1" in
-n|--namespace)
shift
NAMESPACE="-n $1"
shift
;;
-h|--help)
print_usage
exit 0
;;
*)
break
;;
esac
done
kubectl get pod ${NAMESPACE} -o json | jq --raw-output '.items[] | select([.status.containerStatuses[].restartCount] | add > 0) | "\( .metadata.namespace)/\( .metadata.name) \t \([.status.containerStatuses[].restartCount] | add)" ' | column -t