mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-23 14:20:08 +00:00
Add Kube Context to the default prompt
This commit is contained in:
parent
604f1ef9cd
commit
8c426ec0a7
1 changed files with 16 additions and 0 deletions
|
@ -242,11 +242,27 @@ prompt_aws() {
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
|
prompt_kubecontext() {
|
||||||
|
[[ -z "$(which kubectl)" ]] && return
|
||||||
|
local kube_prompt="k8s: "
|
||||||
|
local current_context="$(kubectl config current-context)"
|
||||||
|
local current_namespace="$(kubectl config get-contexts --no-headers | grep '*' | awk '{print $5}')"
|
||||||
|
[[ -z "${current_context}" ]] && return
|
||||||
|
kube_prompt+="${current_context}"
|
||||||
|
[[ "${current_namespace}" ]] && [[ "${current_namespace}" != "default" ]]&& kube_prompt+="/${current_namespace}"
|
||||||
|
|
||||||
|
case "$kube_prompt" in
|
||||||
|
*prod*|*production*) prompt_segment red black "${kube_prompt}" ;;
|
||||||
|
*) prompt_segment cyan $CURRENT_FG "${kube_prompt}" ;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
## Main prompt
|
## Main prompt
|
||||||
build_prompt() {
|
build_prompt() {
|
||||||
RETVAL=$?
|
RETVAL=$?
|
||||||
prompt_status
|
prompt_status
|
||||||
prompt_virtualenv
|
prompt_virtualenv
|
||||||
|
prompt_kubecontext
|
||||||
prompt_aws
|
prompt_aws
|
||||||
prompt_context
|
prompt_context
|
||||||
prompt_dir
|
prompt_dir
|
||||||
|
|
Loading…
Reference in a new issue