1. kube-ps1(kubernetes context, namespace 쉘 프롬프트에서 보여줌)#설치방법git clone https://github.com/jonmosco/kube-ps1.git#.bashrc 수정echo 'source "{download_path}/kube-ps1.sh" PS1='\''[\u@\h \W $(kube_ps1)]\$ '\' 'KUBE_PS1_SYMBOL_ENABLE=false KUBE_PS1_SYMBOL_COLOR=null KUBE_PS1_CTX_COLOR=red KUBE_PS1_NS_COLOR=greenfunction get_cluster_short() { echo "$1" | cut -d / -f2 } KUBE_PS1_CLUSTER_FUNCTION=get_clu..