zun/devstack/settings
Hongbin Lu 271ca60ce2 Remove etcd devstack config
The etcd backend is duplicated for removal. This commit removes
the etcd devstack related code.

Change-Id: Ib5b58d03064f6aab12f674e71d3ffff8eb318857
2019-04-27 18:01:59 +00:00

28 lines
681 B
Plaintext

# Devstack settings
## Modify to your environment
# FLOATING_RANGE=192.168.1.224/27
# PUBLIC_NETWORK_GATEWAY=192.168.1.225
# PUBLIC_INTERFACE=em1
# FIXED_RANGE=10.0.0.0/24
## Log all output to files
# LOGFILE=$HOME/devstack.log
## Neutron settings
# Q_USE_SECGROUP=True
# ENABLE_TENANT_VLANS=True
# TENANT_VLAN_RANGE=
# PHYSICAL_NETWORK=public
# OVS_PHYSICAL_BRIDGE=br-ex
# Configure Docker cluster store
DOCKER_CLUSTER_STORE=${DOCKER_CLUSTER_STORE:-etcd://$SERVICE_HOST:$ETCD_PORT}
# Enable Zun services
if [[ ${HOST_IP} == ${SERVICE_HOST} ]]; then
enable_service zun-api
enable_service zun-compute
enable_service zun-wsproxy
else
enable_service zun-compute
fi