mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
empty namespace value is 'default'
This commit is contained in:
parent
932e4edeaf
commit
6f0c809a7d
1 changed files with 4 additions and 0 deletions
|
@ -1362,6 +1362,10 @@ prompt_kubecontext() {
|
||||||
local k8s_namespace=$(kubectl config get-contexts --no-headers | grep '*' | awk '{print $5}')
|
local k8s_namespace=$(kubectl config get-contexts --no-headers | grep '*' | awk '{print $5}')
|
||||||
# Get the current Kuberenetes context
|
# Get the current Kuberenetes context
|
||||||
local k8s_context=$(kubectl config current-context)
|
local k8s_context=$(kubectl config current-context)
|
||||||
|
|
||||||
|
if [[ -z "$k8s_namespace" ]]; then
|
||||||
|
k8s_namespace="default"
|
||||||
|
fi
|
||||||
"$1_prompt_segment" "$0" "$2" "magenta" "white" "$k8s_context/$k8s_namespace" "KUBERNETES_ICON"
|
"$1_prompt_segment" "$0" "$2" "magenta" "white" "$k8s_context/$k8s_namespace" "KUBERNETES_ICON"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue