Commit c734fca7 authored by Kirill Kolyshkin's avatar Kirill Kolyshkin

centos_manual_config.md: fix etcd client port

As per https://github.com/coreos/etcd/blob/master/Documentation/configuration.md > The official etcd ports are 2379 for client requests, and 2380 for peer > communication. Some legacy code and documentation still references > ports 4001 and 7001, but all new etcd use and discussion should > adopt the assigned ports. Indeed, etcd-2.1.1-2.el7.x86_64 as comes in centos 7 "extras" repo is configured to listen to clients at port 2379, not 4001.
parent ae2aece9
......@@ -88,7 +88,7 @@ echo "192.168.121.9 centos-master
```sh
# Comma separated list of nodes in the etcd cluster
KUBE_ETCD_SERVERS="--etcd-servers=http://centos-master:4001"
KUBE_ETCD_SERVERS="--etcd-servers=http://centos-master:2379"
# logging to stderr means we get it in the systemd journal
KUBE_LOGTOSTDERR="--logtostderr=true"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment