mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
added the current context prompt for your kubectl config
This commit is contained in:
parent
92264124a9
commit
d8d6c752fd
1 changed files with 14 additions and 0 deletions
|
@ -1353,6 +1353,20 @@ prompt_dir_writable() {
|
|||
fi
|
||||
}
|
||||
|
||||
# Kubernetes Current Context
|
||||
prompt_kubecontext() {
|
||||
local kubectl=$(kubectl version 2>/dev/null)
|
||||
|
||||
if [[ -n "kubectl_version" ]]; then
|
||||
# Get the current Kubernetes config context's namespaece
|
||||
local k8s_namespace=$(kubectl config get-contexts --no-headers | grep '*' | awk '{print $5}')
|
||||
# Get the current Kuberenetes context
|
||||
local k8s_context=$(kubectl config current-context)
|
||||
"$1_prompt_segment" "$0" "$2" "magenta" "white" "$k8s_context/$k8s_namespace \u2388"
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
################################################################
|
||||
# Prompt processing and drawing
|
||||
################################################################
|
||||
|
|
Loading…
Reference in a new issue