fix e2e for all providers except gce

This commit is contained in:
deads2k 2014-12-15 11:03:48 -05:00
parent 5ef34bf523
commit fd53795bc9
2 changed files with 8 additions and 7 deletions

View File

@ -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

View File

@ -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"