Last active
February 20, 2018 05:05
-
-
Save lingxiankong/f0805cafaf6455aa8a30adbe3150c5f4 to your computer and use it in GitHub Desktop.
devstack config file for magnum(controller)
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]] | |
| RECLONE=False | |
| MULTI_HOST=True | |
| HOST_IP= | |
| enable_plugin neutron-lbaas https://git.openstack.org/openstack/neutron-lbaas | |
| enable_plugin octavia https://git.openstack.org/openstack/octavia | |
| enable_plugin heat https://git.openstack.org/openstack/heat | |
| enable_plugin barbican https://git.openstack.org/openstack/barbican | |
| enable_plugin magnum https://git.openstack.org/openstack/magnum | |
| LIBS_FROM_GIT+=,python-neutronclient,python-octaviaclient | |
| DATABASE_PASSWORD=password | |
| ADMIN_PASSWORD=password | |
| SERVICE_PASSWORD=password | |
| SERVICE_TOKEN=password | |
| RABBIT_PASSWORD=password | |
| LOGFILE=$DEST/logs/stack.sh.log | |
| VERBOSE=True | |
| LOG_COLOR=False | |
| LOGDAYS=1 | |
| PUBLIC_INTERFACE=eth0 | |
| VOLUME_BACKING_FILE_SIZE=20G | |
| # Pre-requisites | |
| ENABLED_SERVICES=rabbit,mysql,key | |
| # Nova | |
| enable_service n-api | |
| enable_service n-cpu | |
| enable_service n-cond | |
| enable_service n-sch | |
| enable_service n-api-meta | |
| enable_service placement-api | |
| enable_service placement-client | |
| # Glance | |
| enable_service g-api | |
| enable_service g-reg | |
| # Neutron | |
| enable_service q-svc | |
| enable_service q-agt | |
| enable_service q-dhcp | |
| enable_service q-l3 | |
| enable_service q-meta | |
| enable_service q-lbaasv2 | |
| # LBaaS V2 and Octavia | |
| enable_service octavia | |
| enable_service o-cw | |
| enable_service o-hm | |
| enable_service o-hk | |
| enable_service o-api | |
| # enable DVR | |
| Q_PLUGIN=ml2 | |
| Q_ML2_TENANT_NETWORK_TYPE=vxlan | |
| Q_DVR_MODE=legacy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment