diff --git a/cluster/gce/util.sh b/cluster/gce/util.sh index 46a5c61138b..8d4c7296af0 100755 --- a/cluster/gce/util.sh +++ b/cluster/gce/util.sh @@ -21,13 +21,6 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../.. source "${KUBE_ROOT}/cluster/gce/${KUBE_CONFIG_FILE-"config-default.sh"}" -# Some useful colors. -declare -r color_start="\033[" -declare -r color_red="${color_start}0;31m" -declare -r color_yellow="${color_start}0;33m" -declare -r color_green="${color_start}0;32m" -declare -r color_norm="${color_start}0m" - # Verify prereqs function verify-prereqs { local cmd diff --git a/cluster/kube-env.sh b/cluster/kube-env.sh index 28a2f7e3050..aec1a69d7bd 100644 --- a/cluster/kube-env.sh +++ b/cluster/kube-env.sh @@ -21,3 +21,11 @@ # The valid values: 'gce', 'aws', 'azure', 'vagrant', 'local', 'vsphere' KUBERNETES_PROVIDER=${KUBERNETES_PROVIDER:-gce} + +# Some useful colors. +declare -r color_start="\033[" +declare -r color_red="${color_start}0;31m" +declare -r color_yellow="${color_start}0;33m" +declare -r color_green="${color_start}0;32m" +declare -r color_norm="${color_start}0m" +