|
|
#!/usr/bin/env bash |
|
|
|
|
|
# Kubernetes prompt helper for bash/zsh |
|
|
# Displays current context and namespace |
|
|
|
|
|
# Copyright 2026 Jon Mosco |
|
|
# |
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
# you may not use this file except in compliance with the License. |
|
|
# You may obtain a copy of the License at |
|
|
# |
|
|
# http://www.apache.org/licenses/LICENSE-2.0 |
|
|
# |
|
|
# Unless required by applicable law or agreed to in writing, software |
|
|
# distributed under the License is distributed on an "AS IS" BASIS, |
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
|
# See the License for the specific language governing permissions and |
|
|
# limitations under the License. |
|
|
|
|
|
# Debug |
|
|
[[ -n $DEBUG ]] && set -x |
|
|
|
|
|
# Default values for the prompt |
|
|
# Override these values in ~/.zshrc or ~/.bashrc |
|
|
KUBE_PS1_BINARY="${KUBE_PS1_BINARY:-kubectl}" |
|
|
KUBE_PS1_SYMBOL_ENABLE="${KUBE_PS1_SYMBOL_ENABLE:-true}" |
|
|
KUBE_PS1_SYMBOL_PADDING="${KUBE_PS1_SYMBOL_PADDING:-false}" |
|
|
KUBE_PS1_SYMBOL_COLOR="${KUBE_PS1_SYMBOL_COLOR:-}" |
|
|
|
|
|
KUBE_PS1_NS_ENABLE="${KUBE_PS1_NS_ENABLE:-true}" |
|
|
KUBE_PS1_CONTEXT_ENABLE="${KUBE_PS1_CONTEXT_ENABLE:-true}" |
|
|
KUBE_PS1_PREFIX="${KUBE_PS1_PREFIX-(}" |
|
|
KUBE_PS1_SEPARATOR="${KUBE_PS1_SEPARATOR-|}" |
|
|
KUBE_PS1_DIVIDER="${KUBE_PS1_DIVIDER-:}" |
|
|
KUBE_PS1_SUFFIX="${KUBE_PS1_SUFFIX-)}" |
|
|
|
|
|
KUBE_PS1_HIDE_IF_NOCONTEXT="${KUBE_PS1_HIDE_IF_NOCONTEXT:-false}" |
|
|
|
|
|
_KUBE_PS1_KUBECONFIG_CACHE="${KUBECONFIG}" |
|
|
_KUBE_PS1_DISABLE_PATH="${HOME}/.kube/kube-ps1/disabled" |
|
|
_KUBE_PS1_LAST_TIME=0 |
|
|
|
|
|
# Determine our shell |
|
|
_kube_ps1_shell_type() { |
|
|
local _KUBE_PS1_SHELL_TYPE |
|
|
|
|
|
if [ "${ZSH_VERSION-}" ]; then |
|
|
_KUBE_PS1_SHELL_TYPE="zsh" |
|
|
elif [ "${BASH_VERSION-}" ]; then |
|
|
_KUBE_PS1_SHELL_TYPE="bash" |
|
|
fi |
|
|
echo $_KUBE_PS1_SHELL_TYPE |
|
|
} |
|
|
|
|
|
_kube_ps1_init() { |
|
|
[[ -f "${_KUBE_PS1_DISABLE_PATH}" ]] && KUBE_PS1_ENABLED=off |
|
|
|
|
|
case "$(_kube_ps1_shell_type)" in |
|
|
"zsh") |
|
|
_KUBE_PS1_OPEN_ESC="%{" |
|
|
_KUBE_PS1_CLOSE_ESC="%}" |
|
|
_KUBE_PS1_DEFAULT_BG="%k" |
|
|
_KUBE_PS1_DEFAULT_FG="%f" |
|
|
setopt PROMPT_SUBST |
|
|
autoload -U add-zsh-hook |
|
|
add-zsh-hook precmd _kube_ps1_prompt_update |
|
|
zmodload -F zsh/stat b:zstat |
|
|
zmodload zsh/datetime |
|
|
;; |
|
|
"bash") |
|
|
_KUBE_PS1_OPEN_ESC=$'\001' |
|
|
_KUBE_PS1_CLOSE_ESC=$'\002' |
|
|
_KUBE_PS1_DEFAULT_BG=$'\033[49m' |
|
|
_KUBE_PS1_DEFAULT_FG=$'\033[39m' |
|
|
[[ $PROMPT_COMMAND =~ _kube_ps1_prompt_update ]] || PROMPT_COMMAND="_kube_ps1_prompt_update;${PROMPT_COMMAND:-:}" |
|
|
;; |
|
|
esac |
|
|
} |
|
|
|
|
|
_kube_ps1_color_fg() { |
|
|
local _KUBE_PS1_FG_CODE |
|
|
case "${1}" in |
|
|
black) _KUBE_PS1_FG_CODE=0;; |
|
|
red) _KUBE_PS1_FG_CODE=1;; |
|
|
green) _KUBE_PS1_FG_CODE=2;; |
|
|
yellow) _KUBE_PS1_FG_CODE=3;; |
|
|
blue) _KUBE_PS1_FG_CODE=4;; |
|
|
magenta) _KUBE_PS1_FG_CODE=5;; |
|
|
cyan) _KUBE_PS1_FG_CODE=6;; |
|
|
white) _KUBE_PS1_FG_CODE=7;; |
|
|
# 256 |
|
|
[0-9]|[1-9][0-9]|[1][0-9][0-9]|[2][0-4][0-9]|[2][5][0-6]) _KUBE_PS1_FG_CODE="${1}";; |
|
|
*) _KUBE_PS1_FG_CODE=default |
|
|
esac |
|
|
|
|
|
if [[ "${_KUBE_PS1_FG_CODE}" == "default" ]]; then |
|
|
_KUBE_PS1_FG_CODE="${_KUBE_PS1_DEFAULT_FG}" |
|
|
return |
|
|
elif [[ "$(_kube_ps1_shell_type)" == "zsh" ]]; then |
|
|
_KUBE_PS1_FG_CODE="%F{$_KUBE_PS1_FG_CODE}" |
|
|
elif [[ "$(_kube_ps1_shell_type)" == "bash" ]]; then |
|
|
if tput setaf 1 &> /dev/null; then |
|
|
_KUBE_PS1_FG_CODE="$(tput setaf "${_KUBE_PS1_FG_CODE}")" |
|
|
elif [[ $_KUBE_PS1_FG_CODE -ge 0 ]] && [[ $_KUBE_PS1_FG_CODE -le 256 ]]; then |
|
|
_KUBE_PS1_FG_CODE="\033[38;5;${_KUBE_PS1_FG_CODE}m" |
|
|
else |
|
|
_KUBE_PS1_FG_CODE="${_KUBE_PS1_DEFAULT_FG}" |
|
|
fi |
|
|
fi |
|
|
echo "${_KUBE_PS1_OPEN_ESC}${_KUBE_PS1_FG_CODE}${_KUBE_PS1_CLOSE_ESC}" |
|
|
} |
|
|
|
|
|
_kube_ps1_color_bg() { |
|
|
local _KUBE_PS1_BG_CODE |
|
|
case "${1}" in |
|
|
black) _KUBE_PS1_BG_CODE=0;; |
|
|
red) _KUBE_PS1_BG_CODE=1;; |
|
|
green) _KUBE_PS1_BG_CODE=2;; |
|
|
yellow) _KUBE_PS1_BG_CODE=3;; |
|
|
blue) _KUBE_PS1_BG_CODE=4;; |
|
|
magenta) _KUBE_PS1_BG_CODE=5;; |
|
|
cyan) _KUBE_PS1_BG_CODE=6;; |
|
|
white) _KUBE_PS1_BG_CODE=7;; |
|
|
# 256 |
|
|
[0-9]|[1-9][0-9]|[1][0-9][0-9]|[2][0-4][0-9]|[2][5][0-6]) _KUBE_PS1_BG_CODE="${1}";; |
|
|
*) _KUBE_PS1_BG_CODE=$'\033[0m';; |
|
|
esac |
|
|
|
|
|
if [[ "${_KUBE_PS1_BG_CODE}" == "default" ]]; then |
|
|
_KUBE_PS1_FG_CODE="${_KUBE_PS1_DEFAULT_BG}" |
|
|
return |
|
|
elif [[ "$(_kube_ps1_shell_type)" == "zsh" ]]; then |
|
|
_KUBE_PS1_BG_CODE="%K{$_KUBE_PS1_BG_CODE}" |
|
|
elif [[ "$(_kube_ps1_shell_type)" == "bash" ]]; then |
|
|
if tput setaf 1 &> /dev/null; then |
|
|
_KUBE_PS1_BG_CODE="$(tput setab "${_KUBE_PS1_BG_CODE}")" |
|
|
elif [[ $_KUBE_PS1_BG_CODE -ge 0 ]] && [[ $_KUBE_PS1_BG_CODE -le 256 ]]; then |
|
|
_KUBE_PS1_BG_CODE="\033[48;5;${_KUBE_PS1_BG_CODE}m" |
|
|
else |
|
|
_KUBE_PS1_BG_CODE="${DEFAULT_BG}" |
|
|
fi |
|
|
fi |
|
|
echo "${_KUBE_PS1_OPEN_ESC}${_KUBE_PS1_BG_CODE}${_KUBE_PS1_CLOSE_ESC}" |
|
|
} |
|
|
|
|
|
_kube_ps1_binary_check() { |
|
|
command -v $1 >/dev/null |
|
|
} |
|
|
|
|
|
_kube_ps1_symbol() { |
|
|
# Exit early if symbol display is disabled |
|
|
[[ "${KUBE_PS1_SYMBOL_ENABLE}" == false ]] && return |
|
|
|
|
|
local symbol_arg="${KUBE_PS1_SYMBOL_CUSTOM}" |
|
|
|
|
|
local symbol="" |
|
|
local symbol_default=$'\u2388' |
|
|
local symbol_img="☸️" |
|
|
local k8s_glyph=$'\Uf10fe' |
|
|
local k8s_symbol_color=blue |
|
|
local oc_glyph=$'\ue7b7' |
|
|
local oc_symbol_color=red |
|
|
local custom_symbol_color="${KUBE_PS1_SYMBOL_COLOR:-$k8s_symbol_color}" |
|
|
|
|
|
# Choose the symbol based on the provided argument or environment variable |
|
|
case "${symbol_arg}" in |
|
|
"img") |
|
|
symbol="${symbol_img}" |
|
|
;; |
|
|
"k8s") |
|
|
symbol="$(_kube_ps1_color_fg "${custom_symbol_color}")${k8s_glyph}${KUBE_PS1_RESET_COLOR}" |
|
|
;; |
|
|
"oc") |
|
|
symbol="$(_kube_ps1_color_fg ${oc_symbol_color})${oc_glyph}${KUBE_PS1_RESET_COLOR}" |
|
|
;; |
|
|
*) |
|
|
case "$(_kube_ps1_shell_type)" in |
|
|
bash) |
|
|
if ((BASH_VERSINFO[0] >= 4)) && [[ $'\u2388' != "\\u2388" ]]; then |
|
|
symbol="$(_kube_ps1_color_fg $custom_symbol_color)${symbol_default}${KUBE_PS1_RESET_COLOR}" |
|
|
symbol_img=$'\u2638\ufe0f' |
|
|
else |
|
|
symbol=$'\xE2\x8E\x88' |
|
|
symbol_img=$'\xE2\x98\xB8' |
|
|
fi |
|
|
;; |
|
|
zsh) |
|
|
symbol="$(_kube_ps1_color_fg $custom_symbol_color)${symbol_default}${KUBE_PS1_RESET_COLOR}" |
|
|
symbol_img="☸️" |
|
|
;; |
|
|
*) |
|
|
symbol="k8s" |
|
|
esac |
|
|
esac |
|
|
|
|
|
# Append padding if enabled |
|
|
if [[ "${KUBE_PS1_SYMBOL_PADDING}" == true ]]; then |
|
|
echo "${symbol} " |
|
|
else |
|
|
echo "${symbol}" |
|
|
fi |
|
|
} |
|
|
|
|
|
_kube_ps1_split_config() { |
|
|
type setopt >/dev/null 2>&1 && setopt SH_WORD_SPLIT |
|
|
local IFS=$1 |
|
|
echo $2 |
|
|
} |
|
|
|
|
|
_kube_ps1_file_newer_than() { |
|
|
local mtime |
|
|
local file=$1 |
|
|
local check_time=$2 |
|
|
|
|
|
if [[ "$(_kube_ps1_shell_type)" == "zsh" ]]; then |
|
|
# Use zstat '-F %s.%s' to make it compatible with low zsh version (eg: 5.0.2) |
|
|
mtime=$(zstat -L +mtime -F %s.%s "${file}") |
|
|
elif stat -c "%s" /dev/null &> /dev/null; then |
|
|
# GNU stat |
|
|
mtime=$(stat -L -c %Y "${file}") |
|
|
else |
|
|
# BSD stat |
|
|
mtime=$(stat -L -f %m "$file") |
|
|
fi |
|
|
|
|
|
[[ "${mtime}" -gt "${check_time}" ]] |
|
|
} |
|
|
|
|
|
_kube_ps1_prompt_update() { |
|
|
local return_code=$? |
|
|
|
|
|
[[ "${KUBE_PS1_ENABLED}" == "off" ]] && return $return_code |
|
|
|
|
|
if ! _kube_ps1_binary_check "${KUBE_PS1_BINARY}"; then |
|
|
# No ability to fetch context/namespace; display N/A. |
|
|
KUBE_PS1_CONTEXT="BINARY-N/A" |
|
|
KUBE_PS1_NAMESPACE="N/A" |
|
|
return $return_code |
|
|
fi |
|
|
|
|
|
if [[ "${KUBECONFIG}" != "${_KUBE_PS1_KUBECONFIG_CACHE}" ]]; then |
|
|
# User changed KUBECONFIG; unconditionally refetch. |
|
|
_KUBE_PS1_KUBECONFIG_CACHE=${KUBECONFIG} |
|
|
_kube_ps1_get_context_ns |
|
|
return $return_code |
|
|
fi |
|
|
|
|
|
# kubectl will read the environment variable $KUBECONFIG |
|
|
# otherwise set it to ~/.kube/config |
|
|
local conf |
|
|
local config_file_cache |
|
|
|
|
|
for conf in $(_kube_ps1_split_config : "${KUBECONFIG:-${HOME}/.kube/config}"); do |
|
|
[[ -r "${conf}" ]] || continue |
|
|
config_file_cache+=":${conf}" |
|
|
if _kube_ps1_file_newer_than "${conf}" "${_KUBE_PS1_LAST_TIME}"; then |
|
|
_kube_ps1_get_context_ns |
|
|
return $return_code |
|
|
fi |
|
|
done |
|
|
|
|
|
if [[ "${config_file_cache}" != "${_KUBE_PS1_CFGFILES_READ_CACHE}" ]]; then |
|
|
_kube_ps1_get_context_ns |
|
|
return $return_code |
|
|
fi |
|
|
|
|
|
return $return_code |
|
|
} |
|
|
|
|
|
_kube_ps1_get_context() { |
|
|
if [[ "${KUBE_PS1_CONTEXT_ENABLE}" == true ]]; then |
|
|
KUBE_PS1_CONTEXT="$(${KUBE_PS1_BINARY} config current-context 2>/dev/null)" |
|
|
# Set namespace to 'N/A' if it is not defined |
|
|
KUBE_PS1_CONTEXT="${KUBE_PS1_CONTEXT:-N/A}" |
|
|
|
|
|
if [[ -n "${KUBE_PS1_CLUSTER_FUNCTION}" ]]; then |
|
|
KUBE_PS1_CONTEXT="$("${KUBE_PS1_CLUSTER_FUNCTION}" "${KUBE_PS1_CONTEXT}")" |
|
|
fi |
|
|
fi |
|
|
} |
|
|
|
|
|
_kube_ps1_get_ns() { |
|
|
if [[ "${KUBE_PS1_NS_ENABLE}" == true ]]; then |
|
|
KUBE_PS1_NAMESPACE="$(${KUBE_PS1_BINARY} config view --minify --output 'jsonpath={..namespace}' 2>/dev/null)" |
|
|
KUBE_PS1_NAMESPACE="${KUBE_PS1_NAMESPACE:-N/A}" |
|
|
|
|
|
if [[ -n "${KUBE_PS1_NAMESPACE_FUNCTION}" ]]; then |
|
|
KUBE_PS1_NAMESPACE="$("${KUBE_PS1_NAMESPACE_FUNCTION}" "${KUBE_PS1_NAMESPACE}")" |
|
|
fi |
|
|
fi |
|
|
} |
|
|
|
|
|
_kube_ps1_get_context_ns() { |
|
|
# Set the command time |
|
|
if [[ "$(_kube_ps1_shell_type)" == "bash" ]]; then |
|
|
if ((BASH_VERSINFO[0] >= 4 && BASH_VERSINFO[1] >= 2)); then |
|
|
_KUBE_PS1_LAST_TIME=$(printf '%(%s)T') |
|
|
else |
|
|
_KUBE_PS1_LAST_TIME=$(date +%s) |
|
|
fi |
|
|
elif [[ "$(_kube_ps1_shell_type)" == "zsh" ]]; then |
|
|
_KUBE_PS1_LAST_TIME=$EPOCHREALTIME |
|
|
fi |
|
|
|
|
|
KUBE_PS1_CONTEXT="${KUBE_PS1_CONTEXT:-N/A}" |
|
|
KUBE_PS1_NAMESPACE="${KUBE_PS1_NAMESPACE:-N/A}" |
|
|
|
|
|
# Cache which cfgfiles we can read in case they change. |
|
|
local conf |
|
|
_KUBE_PS1_CFGFILES_READ_CACHE= |
|
|
for conf in $(_kube_ps1_split_config : "${KUBECONFIG:-${HOME}/.kube/config}"); do |
|
|
[[ -r $conf ]] && _KUBE_PS1_CFGFILES_READ_CACHE+=":$conf" |
|
|
done |
|
|
|
|
|
_kube_ps1_get_context |
|
|
_kube_ps1_get_ns |
|
|
} |
|
|
|
|
|
# Set kube-ps1 shell defaults |
|
|
_kube_ps1_init |
|
|
|
|
|
_kubeon_usage() { |
|
|
cat <<"EOF" |
|
|
Toggle kube-ps1 prompt on |
|
|
|
|
|
Usage: kubeon [-g | --global] [-h | --help] |
|
|
|
|
|
With no arguments, turn oon kube-ps1 status for this shell instance (default). |
|
|
|
|
|
-g --global turn on kube-ps1 status globally |
|
|
-h --help print this message |
|
|
EOF |
|
|
} |
|
|
|
|
|
_kubeoff_usage() { |
|
|
cat <<"EOF" |
|
|
Toggle kube-ps1 prompt off |
|
|
|
|
|
Usage: kubeoff [-g | --global] [-h | --help] |
|
|
|
|
|
With no arguments, turn off kube-ps1 status for this shell instance (default). |
|
|
|
|
|
-g --global turn off kube-ps1 status globally |
|
|
-h --help print this message |
|
|
EOF |
|
|
} |
|
|
|
|
|
kubeon() { |
|
|
if [[ "${1}" == '-h' || "${1}" == '--help' ]]; then |
|
|
_kubeon_usage |
|
|
elif [[ "${1}" == '-g' || "${1}" == '--global' ]]; then |
|
|
rm -f -- "${_KUBE_PS1_DISABLE_PATH}" |
|
|
elif [[ "$#" -ne 0 ]]; then |
|
|
echo -e "error: unrecognized flag ${1}\\n" |
|
|
_kubeon_usage |
|
|
return |
|
|
fi |
|
|
|
|
|
KUBE_PS1_ENABLED=on |
|
|
} |
|
|
|
|
|
kubeoff() { |
|
|
if [[ "${1}" == '-h' || "${1}" == '--help' ]]; then |
|
|
_kubeoff_usage |
|
|
elif [[ "${1}" == '-g' || "${1}" == '--global' ]]; then |
|
|
mkdir -p -- "$(dirname "${_KUBE_PS1_DISABLE_PATH}")" |
|
|
touch -- "${_KUBE_PS1_DISABLE_PATH}" |
|
|
elif [[ $# -ne 0 ]]; then |
|
|
echo "error: unrecognized flag ${1}" >&2 |
|
|
_kubeoff_usage |
|
|
return |
|
|
fi |
|
|
|
|
|
KUBE_PS1_ENABLED=off |
|
|
} |
|
|
|
|
|
# Build our prompt |
|
|
kube_ps1() { |
|
|
[[ "${KUBE_PS1_ENABLED}" == "off" ]] && return |
|
|
[[ -z "${KUBE_PS1_CONTEXT}" ]] && [[ "${KUBE_PS1_CONTEXT_ENABLE}" == true ]] && return |
|
|
[[ "${KUBE_PS1_CONTEXT}" == "N/A" ]] && [[ ${KUBE_PS1_HIDE_IF_NOCONTEXT} == true ]] && return |
|
|
|
|
|
|
|
|
local KUBE_PS1 |
|
|
local KUBE_PS1_RESET_COLOR="${_KUBE_PS1_OPEN_ESC}${_KUBE_PS1_DEFAULT_FG}${_KUBE_PS1_CLOSE_ESC}" |
|
|
|
|
|
# If background color is set, reset color should also reset the background |
|
|
if [[ -n "${KUBE_PS1_BG_COLOR}" ]]; then |
|
|
KUBE_PS1_RESET_COLOR="${_KUBE_PS1_OPEN_ESC}${_KUBE_PS1_DEFAULT_FG}${_KUBE_PS1_DEFAULT_BG}${_KUBE_PS1_CLOSE_ESC}" |
|
|
fi |
|
|
|
|
|
# Background Color |
|
|
[[ -n "${KUBE_PS1_BG_COLOR}" ]] && KUBE_PS1+="$(_kube_ps1_color_bg "${KUBE_PS1_BG_COLOR}")" |
|
|
|
|
|
# Prefix |
|
|
if [[ -z "${KUBE_PS1_PREFIX_COLOR:-}" ]] && [[ -n "${KUBE_PS1_PREFIX}" ]]; then |
|
|
KUBE_PS1+="${KUBE_PS1_PREFIX}" |
|
|
else |
|
|
KUBE_PS1+="$(_kube_ps1_color_fg "${KUBE_PS1_PREFIX_COLOR}")${KUBE_PS1_PREFIX}${KUBE_PS1_RESET_COLOR}" |
|
|
fi |
|
|
|
|
|
# Symbol |
|
|
KUBE_PS1+="$(_kube_ps1_symbol)" |
|
|
|
|
|
if [[ -n "${KUBE_PS1_SEPARATOR}" ]] && [[ "${KUBE_PS1_SYMBOL_ENABLE}" == true ]]; then |
|
|
KUBE_PS1+="${KUBE_PS1_SEPARATOR}" |
|
|
fi |
|
|
|
|
|
# Context |
|
|
if [[ "${KUBE_PS1_CONTEXT_ENABLE}" == true ]]; then |
|
|
local ctx_color="${KUBE_PS1_CTX_COLOR:-red}" |
|
|
|
|
|
# Allow custom function to override color based on context |
|
|
if [[ -n "${KUBE_PS1_CTX_COLOR_FUNCTION}" ]]; then |
|
|
ctx_color="$("${KUBE_PS1_CTX_COLOR_FUNCTION}" "${KUBE_PS1_CONTEXT}")" |
|
|
fi |
|
|
|
|
|
KUBE_PS1+="$(_kube_ps1_color_fg "${ctx_color}")${KUBE_PS1_CONTEXT}${KUBE_PS1_RESET_COLOR}" |
|
|
fi |
|
|
|
|
|
# Namespace |
|
|
if [[ "${KUBE_PS1_NS_ENABLE}" == true ]]; then |
|
|
if [[ -n "${KUBE_PS1_DIVIDER}" ]] && [[ "${KUBE_PS1_CONTEXT_ENABLE}" == true ]]; then |
|
|
KUBE_PS1+="${KUBE_PS1_DIVIDER}" |
|
|
fi |
|
|
KUBE_PS1+="$(_kube_ps1_color_fg "${KUBE_PS1_NS_COLOR:-cyan}")${KUBE_PS1_NAMESPACE}${KUBE_PS1_RESET_COLOR}" |
|
|
fi |
|
|
|
|
|
# Suffix |
|
|
if [[ -z "${KUBE_PS1_SUFFIX_COLOR:-}" ]] && [[ -n "${KUBE_PS1_SUFFIX}" ]]; then |
|
|
KUBE_PS1+="${KUBE_PS1_SUFFIX}" |
|
|
else |
|
|
KUBE_PS1+="$(_kube_ps1_color_fg "${KUBE_PS1_SUFFIX_COLOR}")${KUBE_PS1_SUFFIX}${KUBE_PS1_RESET_COLOR}" |
|
|
fi |
|
|
|
|
|
# Close Background color if defined |
|
|
[[ -n "${KUBE_PS1_BG_COLOR}" ]] && KUBE_PS1+="${_KUBE_PS1_OPEN_ESC}${_KUBE_PS1_DEFAULT_BG}${_KUBE_PS1_CLOSE_ESC}" |
|
|
|
|
|
echo "${KUBE_PS1}" |
|
|
}
|
|
|
|