Turn of services.sh as it is broken.

See https://github.com/GoogleCloudPlatform/kubernetes/issues/3655.
This commit is contained in:
Joe Beda 2015-01-20 16:48:10 -08:00
parent 4357e9b154
commit a76b6dddad

View File

@ -24,6 +24,11 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE}")/../..
source "${KUBE_ROOT}/cluster/kube-env.sh"
source "${KUBE_ROOT}/cluster/${KUBERNETES_PROVIDER}/util.sh"
if [[ "$KUBERNETES_PROVIDER" == "vagrant" ]]; then
echo "WARNING: Skipping services.sh for ${KUBERNETES_PROVIDER}. See https://github.com/GoogleCloudPlatform/kubernetes/issues/3655"
exit 0
fi
function error() {
echo "$@" >&2
exit 1
@ -50,6 +55,7 @@ function join() {
svcs_to_clean=()
function do_teardown() {
local svc
return
for svc in "${svcs_to_clean[@]:+${svcs_to_clean[@]}}"; do
stop_service "${svc}"
done