e81ff780b2
Screen support has been completely removed from devstack. So we don't need anymore [1] the change id of I8c27182f60b0f5310b3a8bf5feb02beb7ffbb26a the change set of cdba1b371628aa0e8bc5b687351c5ee9b39e9bc6 Change-Id: Id0b5243746aaf519d2f7e887bdbfe9d0a9e78c2f
32 lines
753 B
Plaintext
32 lines
753 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
|
|
|
|
if [[ ${ZUN_DB_TYPE} == "etcd" ]]; then
|
|
enable_service zun-etcd
|
|
fi
|