-
-
Save drolfe/7d55aa91a31177c58290 to your computer and use it in GitHub Desktop.
This file contains hidden or 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]] | |
#----------------------------- | |
# Common congigurations | |
#----------------------------- | |
USE_NEUTRON=True | |
#NOVA_BRANCH=${NOVA_BRANCH:-milestone-proposed} | |
#SWIFT_BRANCH=${SWIFT_BRANCH:-milestone-proposed} | |
#GLANCE_BRANCH=${GLANCE_BRANCH:-milestone-proposed} | |
#HORIZON_BRANCH=${HORIZON_BRANCH:-milestone-proposed} | |
#KEYSTONE_BRANCH=${KEYSTONE_BRANCH:-milestone-proposed} | |
#CINDER_BRANCH=${CINDER_BRANCH:-milestone-proposed} | |
#NEUTRON_BRANCH=${NEUTRON_BRANCH:-milestone-proposed} | |
#CEILOMETER_BRANCH=${CEILOMETER_BRANCH:-milestone-proposed} | |
#HEAT_BRANCH=${HEAT_BRANCH:-milestone-proposed} | |
#TROVE_BRANCH=${TROVE_BRANCH:-milestone-proposed} | |
#REQUIREMENTS_BRANCH=${REQUIREMENTS_BRANCH:-milestone-proposed} | |
#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 | |
enable_service s-proxy s-object s-container s-account | |
enable_service trove tr-api tr-tmgr tr-cond | |
enable_service sahara | |
#enable_service zaqar-server | |
#CEILOMETER_BACKEND=mongo | |
VOLUME_BACKING_FILE_SIZE=50G | |
#IDENTITY_API_VERSION=3 | |
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 | |
#IMAGE_URLS=http://download.cirros-cloud.net/0.3.1/cirros-0.3.1-x86_64-uec.tar.gz | |
#IMAGE_URLS+=,http://openvswitch.org/tty-quantum.tgz | |
#IMAGE_URLS+=,http://fedorapeople.org/groups/heat/prebuilt-jeos-images/F17-x86_64-cfntools.qcow2 | |
#IMAGE_URLS+=,http://fedorapeople.org/groups/heat/prebuilt-jeos-images/F17-i386-cfntools.qcow2 | |
#----------------------------- | |
# Neutron | |
#----------------------------- | |
# If you use nova-network comment out the following lines. | |
if [[ "$USE_NEUTRON" == "True" ]]; then | |
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 | |
enable_service q-metering | |
Q_PLUGIN=ml2 | |
#Q_USE_DEBUG_COMMAND=True | |
#----------------------------- | |
# nova-network | |
#----------------------------- | |
else | |
: | |
# When multi node two NIC machine is recommended since FLAT_INTERFACE | |
# is added to a bridge and IP address is moved to the bridge. | |
# By using another NIC we can avoid unnecessary troubles. | |
#FLAT_INTERFACE=eth1 | |
#PUBLIC_INTERFACE=eth0 | |
fi | |
#----------------------------- | |
# 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 | |
#LOG_COLOR=False | |
ADMIN_PASSWORD=i18n-juno | |
MYSQL_PASSWORD=stackdb | |
RABBIT_PASSWORD=stackqueue | |
SERVICE_PASSWORD=$ADMIN_PASSWORD | |
SERVICE_TOKEN=xyzpdqlazydog | |
#OFFLINE=True | |
RECLONE=True | |
SWIFT_HASH=10c1d1d1ade4551b7cf9 | |
[[post-config|/etc/cinder/cinder.conf]] | |
[DEFAULT] | |
quota_gigabytes=10000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment