aboutsummaryrefslogtreecommitdiff
path: root/powerlevel9k.zsh-theme
diff options
context:
space:
mode:
authorJason Hutchinson <zikes@zikes.me>2017-05-26 21:34:11 +0300
committerJason Hutchinson <zikes@zikes.me>2017-05-26 21:35:29 +0300
commit6f0c809a7dd81a277b7c1ec5bf9b7272ef9e3d7f (patch)
treed7d78681486c78afaf5eca6855c20e444bf88e26 /powerlevel9k.zsh-theme
parent932e4edeaf5508a65e269e88668b588f2e6cac0f (diff)
empty namespace value is 'default'
Diffstat (limited to 'powerlevel9k.zsh-theme')
-rwxr-xr-xpowerlevel9k.zsh-theme4
1 files changed, 4 insertions, 0 deletions
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme
index d86dfe27..668748d2 100755
--- a/powerlevel9k.zsh-theme
+++ b/powerlevel9k.zsh-theme
@@ -1362,6 +1362,10 @@ prompt_kubecontext() {
local k8s_namespace=$(kubectl config get-contexts --no-headers | grep '*' | awk '{print $5}')
# Get the current Kuberenetes context
local k8s_context=$(kubectl config current-context)
+
+ if [[ -z "$k8s_namespace" ]]; then
+ k8s_namespace="default"
+ fi
"$1_prompt_segment" "$0" "$2" "magenta" "white" "$k8s_context/$k8s_namespace" "KUBERNETES_ICON"
fi
}