2022-01-04 03:38:53 -07:00
|
|
|
typeset -g -A kubectx_mapping
|
2021-06-13 08:23:13 -07:00
|
|
|
|
|
|
|
function kubectx_prompt_info() {
|
2022-01-03 06:03:36 -07:00
|
|
|
(( $+commands[kubectl] )) || return
|
|
|
|
|
2022-02-10 09:00:45 -07:00
|
|
|
local current_ctx=$(kubectl config current-context 2> /dev/null)
|
|
|
|
|
|
|
|
[[ -n "$current_ctx" ]] || return
|
2022-01-03 06:03:36 -07:00
|
|
|
|
2024-08-01 01:00:58 -07:00
|
|
|
# Use value in associative array if it exists, otherwise fall back to the context name
|
|
|
|
#
|
|
|
|
# Note: we need to escape the % character in the prompt string when coming directly from
|
|
|
|
# the context name, as it could contain a % character.
|
|
|
|
echo "${kubectx_mapping[$current_ctx]:-${current_ctx:gs/%/%%}}"
|
2021-06-13 08:23:13 -07:00
|
|
|
}
|