-
-
Save ntk148v/ecb7166ccad9078c94de68a14090afec to your computer and use it in GitHub Desktop.
local.conf for devstack stable/mitaka
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[local|localrc]] | |
# Modify to your environment | |
#FIXED_RANGE=10.0.0.0/24 | |
#FLOATING_RANGE=192.168.1.224/27 | |
#PUBLIC_NETWORK_GATEWAY=192.168.1.225 | |
#PUBLIC_INTERFACE=em1 | |
#PHYSICAL_NETWORK=public | |
#OVS_PHYSICAL_BRIDGE=br-ex | |
#HOST_IP=104.199.204.70 | |
#SERVICE_HOST=$HOST_IP | |
BRANCH=master | |
GIT_BASE=${GIT_BASE:-https://github.com} | |
CINDER_BRANCH=$BRANCH | |
GLANCE_BRANCH=$BRANCH | |
HORIZON_BRANCH=$BRANCH | |
KEYSTONE_BRANCH=$BRANCH | |
KEYSTONECLIENT_BRANCH=$BRANCH | |
NOVA_BRANCH=$BRANCH | |
NOVACLIENT_BRANCH=$BRANCH | |
NEUTRON_BRANCH=$BRANCH | |
SWIFT_BRANCH=$BRANCH | |
PUBLIC_INTERFACE=eth0 | |
ENABLE_TENANT_VLANS=True | |
TENANT_VLAN_RANGE=1000:1999 | |
# Credentials | |
ADMIN_PASSWORD=admin@123 | |
DATABASE_PASSWORD=$ADMIN_PASSWORD | |
RABBIT_PASSWORD=$ADMIN_PASSWORD | |
SERVICE_PASSWORD=$ADMIN_PASSWORD | |
SERVICE_TOKEN=$ADMIN_PASSWORD | |
SWIFT_PASSWORD=$ADMIN_PASSWORD | |
enable_service rabbit | |
# Ensure we are using neutron networking rather than nova networking | |
disable_service n-net | |
enable_service q-svc | |
enable_service q-agt | |
enable_service q-dhcp | |
enable_service q-l3 | |
enable_service q-meta | |
enable_service neutron | |
# Disable LBaaS(v1) service | |
disable_service q-lbaas | |
# Enable heat plugin | |
enable_plugin heat https://github.com/openstack/heat stable/mitaka | |
enable_service heat h-api h-api-cfn h-api-cw h-eng | |
VOLUME_BACKING_FILE_SIZE=20G | |
# Logging configuration | |
# Logging configuration | |
LOGDIR=$DEST/logs | |
SCREEN_LOGDIR=$LOGDIR | |
SCREEN_HARDSTATUS="%{= rw} %H %{= wk} %L=%-w%{= bw}%30L> %n%f %t*%{= wk}%+Lw%-17< %-=%{= gk} %y/%m/%d %c" | |
LOGFILE=$LOGDIR/devstack.log | |
LOGDAYS=1 | |
LOG_COLOR=True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment