fix(kubectx): show plain context if not mapped (#10134)

This commit is contained in:
Mattias Öhrn 2021-08-24 19:19:29 +02:00 committed by GitHub
parent 6d5b8484ce
commit e13ff75f38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
} }