Fix client advertise url

Before this fix, your etcd client would get a "http://0.0.0.0:2379"
as an URL for  connecting, which is wrong.

Change-Id: I6aa363b9e3dfbd43ff0d531b72b8058e20b81e81
This commit is contained in:
Proskurin Kirill 2016-09-07 16:53:06 +00:00
parent ca71e37378
commit 39cb95b6bd
1 changed files with 1 additions and 1 deletions

View File

@ -11,4 +11,4 @@ service:
liveness: "true"
daemon:
command: etcd --listen-client-urls http://0.0.0.0:{{ etcd_client_port }}
--advertise-client-urls http://0.0.0.0:{{ etcd_server_port }}
--advertise-client-urls {{ etcd_urls }}