Unverified Commit e13ff75f authored by Mattias Öhrn's avatar Mattias Öhrn Committed by GitHub
Browse files

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

parent 6d5b8484
...@@ -3,12 +3,7 @@ typeset -A kubectx_mapping ...@@ -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
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment