-
-
Save gAmUssA/ccf3c5814f42233548cb318079c97cad to your computer and use it in GitHub Desktop.
kubectl color output: finally you can tell Pending from Running
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://unix.stackexchange.com/a/10065 | |
# if stdout is a terminal | |
if test -t 1; then | |
# see if it supports colors | |
ncolors=$(tput colors) | |
if test -n "$ncolors" && test $ncolors -ge 8; then | |
bold="$(tput bold)" | |
underline="$(tput smul)" | |
standout="$(tput smso)" | |
normal="$(tput sgr0)" | |
black="$(tput setaf 0)" | |
red="$(tput setaf 1)" | |
green="$(tput setaf 2)" | |
yellow="$(tput setaf 3)" | |
blue="$(tput setaf 4)" | |
magenta="$(tput setaf 5)" | |
cyan="$(tput setaf 6)" | |
white="$(tput setaf 7)" | |
fi | |
fi | |
kubectl get pods "$@" \ | |
| sed "s/Running/${green}Running${normal}/g" \ | |
| sed "s/Pending/${yellow}Pending${normal}/g" \ | |
| sed "s/Completed/${blue}Completed${normal}/g" \ | |
| sed "s/Error/${red}Error${normal}/g" \ | |
| sed "s/CrashLoopBackOff/${red}CrashLoopBackOff${normal}/g" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment