Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- VERBOSE=True
- MYSQL_PASSWORD=secrete
- RABBIT_PASSWORD=secrete
- SERVICE_TOKEN=secrete
- SERVICE_PASSWORD=secrete
- ADMIN_PASSWORD=secrete
- SWIFT_HASH=do_not_change_this
- # Force the prerequisite evaluation to always run in case we are
- # recycling a VM after rebuilding.
- #FORCE_PREREQ=1
- # Set the range of IPs for the guests
- NETWORK_GATEWAY=192.168.57.1
- FIXED_RANGE=192.168.57.0/24
- # Configure the notifier to talk to the message queue
- EXTRA_OPTS=(
- notification_driver=ceilometer.compute.nova_notifier
- notification_driver=nova.openstack.common.notifier.rabbit_notifier
- instance_usage_audit=True
- )
- # Tell pip to save the files it downloads
- PIP_DOWNLOAD_CACHE=/opt/stack/cache/pip
- # Use Quantum for networking
- #enable_service quantum,q-svc,q-agt,q-dhcp,q-l3
- ##Q_PLUGIN=linuxbridge
- #LIBVIRT_FIREWALL_DRIVER=nova.virt.firewall.NoopFirewallDriver
- #NOVA_VIF_DRIVER=nova.virt.libvirt.vif.LibvirtOpenVswitchDriver
- #NOVA_USE_QUANTUM_API=v2
- # Set the location for the block file storage
- # to something within the VM so it is deleted
- # when we rebuild *and* so it allows the required
- # permissions for the loopback configuration,
- # which can be an issue with the NFS setup.
- #DATA_DIR=/opt/stack/_vmdata/`hostname`
- #DATA_DIR=/home/vagrant/data
- DATA_DIR=/opt/stack/data
- # Nova wants to chown files to vagrant:vagrant so
- # we can't put it on an NFS mount.
- # Use the master git repos of the stackforge libs like pecan and wsme
- enable_service stackforge_libs
- # Turn on ceilometer
- enable_service ceilometer-acompute,ceilometer-acentral,ceilometer-collector,ceilometer-api
- #enable_service swift
- CHOWN_AFTER_PROJECT_INSTALL=False
- # CEILOMETER_BRANCH=master
- # CINDER_BRANCH=stable/folsom
- # NOVA_BRANCH=stable/folsom
- # SWIFT_BRANCH=stable/folsom
- # SWIFT3_BRANCH=stable/folsom
- # GLANCE_BRANCH=stable/folsom
- # KEYSTONE_BRANCH=stable/folsom
- # HORIZON_BRANCH=stable/folsom
- # QUANTUM_BRANCH=stable/folsom
- # TEMPEST_BRANCH=stable/folsom
- # HEAT_BRANCH=stable/folsom
- # RYU_BRANCH=stable/folsom
- # Turn off cinder and use nova-volumes because
- # something in my devstack environment does not
- # correctly set up cinder as of 2012-09-22
- #disable_service c-api c-sch c-vol cinder
- #enable_service n-vol
- # Use UUID tokens
- KEYSTONE_TOKEN_FORMAT=UUID
- # Log stack.sh output
- LOGFILE=/opt/stack/logs/stack.log
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement