Skip to content

Instantly share code, notes, and snippets.

@gAmUssA
Forked from sunsided/gp.sh
Created November 2, 2020 16:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gAmUssA/ccf3c5814f42233548cb318079c97cad to your computer and use it in GitHub Desktop.
Save gAmUssA/ccf3c5814f42233548cb318079c97cad to your computer and use it in GitHub Desktop.
kubectl color output: finally you can tell Pending from Running
# 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