Last active
September 25, 2015 12:15
-
-
Save serngawy/6989d78e5885a46c3ef5 to your computer and use it in GitHub Desktop.
local.conf for opendaylight and openstack
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]] | |
LOGFILE=stack.sh.log | |
SCREEN_LOGDIR=/opt/stack/data/log | |
LOG_COLOR=False | |
RECLONE=yes | |
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 neutron | |
enable_plugin networking-odl https://github.com/openstack/networking-odl stable/kilo | |
HOST_IP=192.168.50.20 | |
HOST_NAME=devstack-control | |
SERVICE_HOST=$HOST_IP | |
SERVICE_HOST_NAME=$HOST_NAME | |
NEUTRON_CREATE_INITIAL_NETWORKS=False | |
Q_ML2_TENANT_NETWORK_TYPE=vxlan | |
ENABLE_TENANT_TUNNELS=True | |
ODL_MODE=externalodl | |
ODL_MGR_IP=192.168.50.1 | |
ODL_PORT=8080 | |
VNCSERVER_PROXYCLIENT_ADDRESS=${HOST_IP} | |
VNCSERVER_LISTEN=0.0.0.0 | |
MYSQL_HOST=$SERVICE_HOST | |
RABBIT_HOST=$SERVICE_HOST | |
GLANCE_HOSTPORT=$SERVICE_HOST:9292 | |
KEYSTONE_AUTH_HOST=$SERVICE_HOST | |
KEYSTONE_SERVICE_HOST=$SERVICE_HOST | |
DATABASE_PASSWORD=mysql | |
RABBIT_PASSWORD=rabbit | |
SERVICE_TOKEN=service | |
SERVICE_PASSWORD=admin | |
ADMIN_PASSWORD=admin | |
BRANCH=stable/kilo | |
GLANCE_BRANCH=$BRANCH | |
HORIZON_BRANCH=$BRANCH | |
KEYSTONE_BRANCH=$BRANCH | |
NOVA_BRANCH=$BRANCH | |
NEUTRON_BRANCH=$BRANCH | |
SWIFT_BRANCH=$BRANCH | |
CLIFF_BRANCH=$BRANCH | |
TEMPEST_BRANCH=$BRANCH | |
CINDER_BRANCH=$BRANCH | |
HEAT_BRANCH=$BRANCH | |
TROVE_BRANCH=$BRANCH | |
CEILOMETER_BRANCH=$BRANCH | |
# Disable q-l3 and uncomment the lines below if ODL is being configured to perform l3forward | |
#disable_service q-l3 | |
#Q_L3_ENABLED=True | |
#ODL_L3=True | |
PUBLIC_INTERFACE=eth2 | |
[[post-config|$NEUTRON_CONF]] | |
[DEFAULT] | |
service_plugins = networking_odl.l3.l3_odl.OpenDaylightL3RouterPlugin | |
[[post-config|/etc/neutron/plugins/ml2/ml2_conf.ini]] | |
[agent] | |
minimize_polling=Tru |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment