Merge pull request #37069 from zreigz/fix-etcd-for-ubuntu

Automatic merge from submit-queue

Fix etcd unavailable error when performing kube-up.sh for Ubuntu prov…

**What this PR does / why we need it**:
This PR fixes 'etcd unavailable error' when performing kube-up.sh for Ubuntu provider

**Which issue this PR fixes** 
fixes: https://github.com/kubernetes/kubernetes/issues/36340
pull/6/head
Kubernetes Submit Queue 2016-11-21 06:20:27 -08:00 committed by GitHub
commit 907d132087
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ function create-etcd-opts() {
cat <<EOF > ~/kube/default/etcd
ETCD_OPTS="\
-name infra\
-listen-client-urls http://127.0.0.1:4001,http://${1}:4001\
--listen-client-urls=http://127.0.0.1:4001,http://${1}:4001\
-advertise-client-urls http://${1}:4001"
EOF
}