Created
June 27, 2013 14:22
-
-
Save jistr/5876825 to your computer and use it in GitHub Desktop.
DevStack localrc for use with Fedora 18 (works as of 2013-06-27)
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
# http://fedoraproject.org/wiki/OpenStack_devstack | |
# http://devstack.org/localrc.html | |
# Check /etc/hosts and make sure that ::1 is bound to 'localhost6', | |
# not to 'localhost'. | |
DEST=$HOME/openstack | |
DATA_DIR=$DEST/data | |
LOGFILE=$DEST/logs/stack.log | |
SCREEN_LOGDIR=$DEST/logs | |
VERBOSE=True | |
disable_service rabbit | |
enable_service qpid | |
disable_service mysql | |
enable_service postgresql | |
HOST_IP_IFACE=eth0 | |
PUBLIC_INTERFACE=eth0 | |
VLAN_INTERFACE=eth0 | |
FLAT_INTERFACE=eth0 | |
DATABASE_PASSWORD=nopass | |
SERVICE_TOKEN=nopass | |
SERVICE_PASSWORD=nopass | |
ADMIN_PASSWORD=nopass | |
# CINDER_BRANCH=stable/grizzly | |
# GLANCE_BRANCH=stable/grizzly | |
# HORIZON_BRANCH=stable/grizzly | |
# KEYSTONE_BRANCH=stable/grizzly | |
# KEYSTONECLIENT_BRANCH=stable/grizzly | |
# NOVA_BRANCH=stable/grizzly | |
# NOVACLIENT_BRANCH=stable/grizzly | |
QUANTUM_BRANCH=stable/grizzly | |
# SWIFT_BRANCH=stable/grizzly | |
# IMAGE_URLS="http://berrange.fedorapeople.org/images/2012-02-29/f16-x86_64-openstack-sda.qcow2" | |
# swift configuration | |
ENABLED_SERVICES+=,swift | |
SWIFT_HASH=66a3d6b56c1f479c8b4e70ab5c2000f1 | |
SWIFT_REPLICAS=1 | |
# quantum configuration (https://wiki.openstack.org/wiki/QuantumDevstack) | |
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 quantum | |
# Optional, to enable tempest configuration as part of devstack | |
enable_service tempest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment