diff options
author | Derek Bassett <Derek_Bassett@comcast.com> | 2017-10-27 20:55:21 +0300 |
---|---|---|
committer | Derek Bassett <Derek_Bassett@comcast.com> | 2017-10-27 20:55:21 +0300 |
commit | 1c2774f5925d1734e25843ec1c5e65eaa37f8ceb (patch) | |
tree | 2838130d5fbf7f521a34a289bdde9c21d0723e4a /powerlevel9k.zsh-theme | |
parent | e6d882ac4783b67e4541fff73a8f54fa43de73b9 (diff) |
Fix to unit tests. Also removed unneeded extra call to kubectl.
Diffstat (limited to 'powerlevel9k.zsh-theme')
-rwxr-xr-x | powerlevel9k.zsh-theme | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme index ee63a49a..3d8a245f 100755 --- a/powerlevel9k.zsh-theme +++ b/powerlevel9k.zsh-theme @@ -1415,6 +1415,7 @@ prompt_kubecontext() { local kubectl_version="$(kubectl version --client 2>/dev/null)" if [[ -n "$kubectl_version" ]]; then + # Get the current Kuberenetes context local cur_ctx=$(kubectl config view -o=jsonpath='{.current-context}') cur_namespace="$(kubectl config view -o=jsonpath="{.contexts[?(@.name==\"${cur_ctx}\")].context.namespace}")" # If the namespace comes back empty set it default. @@ -1422,9 +1423,6 @@ prompt_kubecontext() { cur_namespace="default" fi - # Get the current Kuberenetes context - local cur_ctx=$(kubectl config view -o=jsonpath='{.current-context}') - "$1_prompt_segment" "$0" "$2" "magenta" "white" "$cur_ctx/$cur_namespace" "KUBERNETES_ICON" fi } |