mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-16 09:50:06 +00:00
Added functionality to parse the current namespace regardless of config settings
This commit is contained in:
parent
f46617acd3
commit
e6d882ac47
1 changed files with 11 additions and 9 deletions
|
@ -1410,20 +1410,22 @@ prompt_dir_writable() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# Kubernetes Current Context
|
# Kubernetes Current Context/Namespace
|
||||||
prompt_kubecontext() {
|
prompt_kubecontext() {
|
||||||
local kubectl_version="$(kubectl version --client 2>/dev/null)"
|
local kubectl_version="$(kubectl version --client 2>/dev/null)"
|
||||||
|
|
||||||
if [[ -n "$kubectl_version" ]]; then
|
if [[ -n "$kubectl_version" ]]; then
|
||||||
# Get the current Kubernetes config context's namespaece
|
local cur_ctx=$(kubectl config view -o=jsonpath='{.current-context}')
|
||||||
local k8s_namespace=$(kubectl config get-contexts --no-headers | grep '*' | awk '{print $5}')
|
cur_namespace="$(kubectl config view -o=jsonpath="{.contexts[?(@.name==\"${cur_ctx}\")].context.namespace}")"
|
||||||
# Get the current Kuberenetes context
|
# If the namespace comes back empty set it default.
|
||||||
local k8s_context=$(kubectl config current-context)
|
if [[ -z "${cur_namespace}" ]]; then
|
||||||
|
cur_namespace="default"
|
||||||
if [[ -z "$k8s_namespace" ]]; then
|
|
||||||
k8s_namespace="default"
|
|
||||||
fi
|
fi
|
||||||
"$1_prompt_segment" "$0" "$2" "magenta" "white" "$k8s_context/$k8s_namespace" "KUBERNETES_ICON"
|
|
||||||
|
# Get the current Kuberenetes context
|
||||||
|
local cur_ctx=$(kubectl config view -o=jsonpath='{.current-context}')
|
||||||
|
|
||||||
|
"$1_prompt_segment" "$0" "$2" "magenta" "white" "$cur_ctx/$cur_namespace" "KUBERNETES_ICON"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue