Use devstack-provided etcd port

Devstack provides a variable for etcd port for now [1]. It is better
to use this variable instead of hard-coding the port.

[1] https://review.openstack.org/#/c/467714/

Change-Id: Ib00a4911f287b5791da2eb3da6d8aded5b6a06c1
This commit is contained in:
Hongbin Lu 2017-06-05 20:51:13 -04:00
parent adcb9137dd
commit 24c111cf4d
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ FUXI_AUTH_CACHE_DIR=${FUXI_AUTH_CACHE_DIR:-/var/cache/fuxi}
FUXI_DOCKER_ENGINE_PORT=${FUXI_DOCKER_ENGINE_PORT:-2375}
FUXI_VOLUME_PROVIDERS=${FUXI_VOLUME_PROVIDERS:-cinder,manila}
DOCKER_CLUSTER_STORE=${DOCKER_CLUSTER_STORE:-etcd://localhost:2379}
DOCKER_CLUSTER_STORE=${DOCKER_CLUSTER_STORE:-etcd://localhost:$ETCD_PORT}
GITREPO["kuryr"]=${KURYR_REPO:-${GIT_BASE}/openstack/kuryr.git}
GITBRANCH["kuryr"]=${KURYR_BRANCH:-master}