Created
October 29, 2016 10:47
-
-
Save duyet/1fe56d669bf5587f1cdc3bd8b7aabc07 to your computer and use it in GitHub Desktop.
Devstack config for Magnum and Maruno
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]] | |
# Modify to your environment | |
#FIXED_RANGE=10.0.0.0/24 | |
#FLOATING_RANGE=192.168.1.224/27 | |
#PUBLIC_NETWORK_GATEWAY=192.168.1.225 | |
#PUBLIC_INTERFACE=em1 | |
#PHYSICAL_NETWORK=public | |
#OVS_PHYSICAL_BRIDGE=br-ex | |
PUBLIC_INTERFACE=eth0 | |
ENABLE_TENANT_VLANS=True | |
TENANT_VLAN_RANGE=1000:1999 | |
# Credentials | |
ADMIN_PASSWORD=123456 | |
DATABASE_PASSWORD=$ADMIN_PASSWORD | |
RABBIT_PASSWORD=$ADMIN_PASSWORD | |
SERVICE_PASSWORD=$ADMIN_PASSWORD | |
SERVICE_TOKEN=$ADMIN_PASSWORD | |
SWIFT_PASSWORD=$ADMIN_PASSWORD | |
enable_service rabbit | |
# Ensure we are using neutron networking rather than nova networking | |
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 | |
# Disable LBaaS(v1) service | |
disable_service q-lbaas | |
# Enable LBaaS(v2) services | |
enable_service q-lbaasv2 | |
enable_service octavia | |
enable_service o-cw | |
enable_service o-hk | |
enable_service o-hm | |
enable_service o-api | |
# Enable heat plugin | |
enable_plugin heat https://git.openstack.org/openstack/heat | |
# Enable barbican services | |
enable_plugin barbican https://git.openstack.org/openstack/barbican | |
enable_plugin neutron-lbaas https://git.openstack.org/openstack/neutron-lbaas | |
enable_plugin octavia https://git.openstack.org/openstack/octavia | |
VOLUME_BACKING_FILE_SIZE=20G | |
enable_plugin murano git://git.openstack.org/openstack/murano | |
enable_service murano-cfapi | |
enable_plugin ceilometer git://git.openstack.org/openstack/ceilometer | |
# Enable magnum plugin after dependent plugins | |
enable_plugin magnum https://git.openstack.org/openstack/magnum | |
# Optional: uncomment to enable the Magnum UI plugin in Horizon | |
enable_plugin magnum-ui https://github.com/openstack/magnum-ui | |
# enable swift in devstack for Docker 2.0 | |
enable_service s-proxy | |
enable_service s-object | |
enable_service s-container | |
enable_service s-account |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment