Add kubectl prompt

This commit is contained in:
Pavle Portic 2022-04-27 17:24:24 +02:00
parent 3f0fb3c19f
commit f33e1b1fb1
Signed by: TheEdgeOfRage
GPG Key ID: 66AD4BA646FBC0D2
1 changed files with 9 additions and 0 deletions

View File

@ -146,6 +146,14 @@ prompt_tf() {
fi
}
# Kubectl: current active kubeconfig file
prompt_kubectl() {
local kubeconfig="$KUBECONFIG"
if [[ -n $kubeconfig ]]; then
prompt_segment magenta black "${config_name}"
fi
}
# Status:
# - was there an error
# - am I root
@ -174,6 +182,7 @@ build_prompt() {
prompt_aws
prompt_dir
prompt_virtualenv
prompt_kubectl
prompt_tf
prompt_git
prompt_end