mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-17 19:30:10 +00:00
fix(kubectx): show plain context if not mapped (#10134)
This commit is contained in:
parent
6d5b8484ce
commit
e13ff75f38
1 changed files with 2 additions and 7 deletions
|
@ -3,12 +3,7 @@ typeset -A kubectx_mapping
|
||||||
function kubectx_prompt_info() {
|
function kubectx_prompt_info() {
|
||||||
if [ $commands[kubectl] ]; then
|
if [ $commands[kubectl] ]; then
|
||||||
local current_ctx=`kubectl config current-context`
|
local current_ctx=`kubectl config current-context`
|
||||||
|
# use value in associative array if it exists, otherwise fall back to the context name
|
||||||
#if associative array declared
|
echo "${kubectx_mapping[$current_ctx]:-$current_ctx}"
|
||||||
if [[ -n $kubectx_mapping ]]; then
|
|
||||||
echo "${kubectx_mapping[$current_ctx]}"
|
|
||||||
else
|
|
||||||
echo $current_ctx
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue