Merge pull request #42467 from chentao1596/change-etcd-version

Automatic merge from submit-queue (batch tested with PRs 43518, 42467)

install/kube-up: fix some errors while install k8s through kube-up/down.sh

What this PR does / why we need it:

     etcd2.3.1 will be installed follow this scripts, but k8s use etcd3 as default storage backend, so the next error will always be apprear: 
     API server: rpc error: code = 13 desc = transport is closing
     so i think we should change the version of etcd

    thank you!
pull/6/head
Kubernetes Submit Queue 2017-03-28 14:09:22 -07:00 committed by GitHub
commit 23104b714c
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ grep -q "^${FLANNEL_VERSION}\$" binaries/.flannel 2>/dev/null || {
}
# ectd
ETCD_VERSION=${ETCD_VERSION:-"2.3.1"}
ETCD_VERSION=${ETCD_VERSION:-"3.0.17"}
ETCD="etcd-v${ETCD_VERSION}-linux-amd64"
echo "Prepare etcd ${ETCD_VERSION} release ..."
grep -q "^${ETCD_VERSION}\$" binaries/.etcd 2>/dev/null || {