Last active
September 11, 2015 22:04
-
-
Save ninadpchaudhari/2da7ea0f5355f2e38227 to your computer and use it in GitHub Desktop.
local.conf for installation of OpenStack using DevStack on master/kilo
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]] | |
ADMIN_PASSWORD=secrete | |
DATABASE_PASSWORD=$ADMIN_PASSWORD | |
RABBIT_PASSWORD=$ADMIN_PASSWORD | |
SERVICE_PASSWORD=$ADMIN_PASSWORD | |
SERVICE_TOKEN=a682f596-76f3-11e3-b3b2-e716f9080d50 | |
#trying to use Github instead of openstack git | |
GIT_BASE=https://github.com | |
# Enable Logging | |
LOGFILE=/opt/stack/logs/stack.sh.log | |
VERBOSE=True | |
LOG_COLOR=True | |
SCREEN_LOGDIR=/opt/stack/logs | |
LIBS_FROM_GIT=oslo.config | |
SYSLOG=True | |
#For upgrading pip packages to latest version | |
#Disabled as packages in stable/kilo have upper and lower bonds | |
#in version numbers of packages in requirements.txt | |
#PIP_UPGRADE=True | |
#branches | |
GLANCE_BRANCH=stable/kilo | |
HORIZON_BRANCH=stable/kilo | |
KEYSTONE_BRANCH=stable/kilo | |
NOVA_BRANCH=stable/kilo | |
NEUTRON_BRANCH=stable/kilo | |
HEAT_BRANCH=stable/kilo | |
CINDER_BRANCH=stable/kilo | |
#Config to disable Nova-Networking and use Neuron instead | |
disable_service n-net | |
enable_service q-svc | |
enable_service q-agt | |
enable_service q-dhcp | |
enable_service q-meta | |
enable_service q-l3 | |
enable_service neutron | |
#Enabling heat and tempset | |
enable_service heat h-api h-api-cfn h-api-cw h-eng | |
enable_service tempest | |
#Networking not usually required | |
#FIXED_RANGE=192.168.1.0/24 | |
#FLOATING_RANGE=192.168.20.0/25 | |
#HOST_IP=192.168.1.147 | |
#FLOATING_RANGE=192.168.1.0/24 | |
#FLAT_INTERFACE=eth0 | |
#PUBLIC_NETWORK_GATEWAY=192.168.1.1 | |
#Q_FLOATING_ALLOCATION_POOL=start=192.168.1.10,END=192.168.1.20 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment