From c23c2a9e29ff85ca6c5c81475fd0fce3a8d9ae70 Mon Sep 17 00:00:00 2001 From: Prabhu Jayakumar Date: Wed, 30 May 2018 00:32:23 +0530 Subject: [PATCH] Revert "Use * to indicate current context & current namespace" This reverts commit dad48e53979c9d4728e2bdb548c944d6e2541f31. --- kubectx | 2 +- kubens | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kubectx b/kubectx index 9eba150..f181552 100755 --- a/kubectx +++ b/kubectx @@ -60,7 +60,7 @@ list_contexts() { for c in $(get_contexts); do if [[ -t 1 && "${c}" = "${cur}" ]]; then - echo "* ${darkbg}${yellow}${c}${normal}" + echo "${darkbg}${yellow}${c}${normal}" else echo "${c}" fi diff --git a/kubens b/kubens index e3e3383..cbf26a7 100755 --- a/kubens +++ b/kubens @@ -114,7 +114,7 @@ list_namespaces() { ns_list=$(get_namespaces) for c in $ns_list; do if [[ -t 1 && "${c}" = "${cur}" ]]; then - echo "* ${darkbg}${yellow}${c}${normal}" + echo "${darkbg}${yellow}${c}${normal}" else echo "${c}" fi