Created
June 24, 2014 05:07
-
-
Save amotoki/8a3ebce1267c023949bf to your computer and use it in GitHub Desktop.
local.conf for devstack (master branch)
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]] | |
#OFFLINE=True | |
RECLONE=True | |
#disable_service mysql | |
#enable_service postgresql | |
#disable_service cinder c-sch c-api c-vol | |
#disable_service tempest | |
#disable_service horizon | |
#enable_service heat h-api h-api-cfn h-api-cw h-eng | |
#enable_service ceilometer-acompute ceilometer-acentral ceilometer-collector ceilometer-api | |
KEYSTONE_TOKEN_FORMAT=UUID | |
PRIVATE_NETWORK_NAME=net1 | |
PUBLIC_NETWORK_NAME=ext_net | |
# For VPNaaS | |
#FIXED_RANGE=10.2.0.0/24 | |
#FIXED_NETWORK_SIZE=256 | |
#NETWORK_GATEWAY=10.2.0.1 | |
#PUBLIC_NETWORK_GATEWAY=172.24.4.232 | |
#Q_FLOATING_ALLOCATION_POOL=start=172.24.4.233,end=172.24.4.238 | |
disable_service n-net | |
enable_service neutron q-svc q-agt | |
enable_service q-dhcp | |
enable_service q-l3 | |
enable_service q-meta | |
#enable_service q-lbaas | |
#enable_service q-fwaas | |
#enable_service q-vpn | |
#LIBVIRT_FIREWALL_DRIVER=nova.virt.firewall.NoopFirewallDriver | |
#NOVA_VIF_DRIVER=nova.virt.libvirt.vif.LibvirtOpenVswitchDriver | |
Q_PLUGIN=ml2 | |
#Q_PLUGIN=openvswitch | |
#Q_PLUGIN=linuxbridge | |
#Q_USE_NAMESPACE=False | |
#Q_USE_SECGROUP=True | |
#Q_USE_DEBUG_COMMAND=True | |
#----------------------------- | |
# Devstack configurations | |
#----------------------------- | |
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=False | |
ADMIN_PASSWORD=pass | |
MYSQL_PASSWORD=stackdb | |
RABBIT_PASSWORD=stackqueue | |
SERVICE_PASSWORD=$ADMIN_PASSWORD | |
SERVICE_TOKEN=xyzpdqlazydog | |
[[post-config|$NEUTRON_CONF]] | |
[quotas] | |
quota_network = -1 | |
quota_subnet = -1 | |
quota_port = -1 | |
quota_router = -1 | |
quota_floatingip = -1 | |
quota_security_group = -1 | |
quota_security_group_rule = -1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment