8dd1b87e26
Implement l3 north-south networking functionality. In our current design, external network is hosted in one of the bottom pod, VMs hosted in other bottom pods are connected to this external network via a bridge network, using the same physical network as the east- west networking, but different vlan. Change-Id: I953322737aa97b2d1ebd9a15dc479d7aba753678
71 lines
1.9 KiB
Plaintext
71 lines
1.9 KiB
Plaintext
#
|
|
# Sample DevStack local.conf.
|
|
#
|
|
# This sample file is intended to be used for your typical Tricircle DevStack
|
|
# multi-node environment. As this file configures, DevStack will setup two
|
|
# regions, one top region running Tricircle services, Keystone, Glance, Nova
|
|
# API gateway, Cinder API gateway and Neutron with Tricircle plugin; and one
|
|
# bottom region running original Nova, Cinder and Neutron.
|
|
#
|
|
# This file works with local.conf.node_2.sample to help you build a two-node
|
|
# three-region Tricircle environment. Keystone and Glance in top region are
|
|
# shared by services in all the regions.
|
|
#
|
|
# Some options needs to be change to adapt to your environment, see README.md
|
|
# for detail.
|
|
#
|
|
|
|
[[local|localrc]]
|
|
|
|
DATABASE_PASSWORD=password
|
|
RABBIT_PASSWORD=password
|
|
SERVICE_PASSWORD=password
|
|
SERVICE_TOKEN=password
|
|
ADMIN_PASSWORD=password
|
|
LOGFILE=/opt/stack/logs/stack.sh.log
|
|
VERBOSE=True
|
|
LOG_COLOR=True
|
|
SCREEN_LOGDIR=/opt/stack/logs
|
|
FIXED_RANGE=10.0.0.0/24
|
|
NETWORK_GATEWAY=10.0.0.1
|
|
FIXED_NETWORK_SIZE=256
|
|
FLOATING_RANGE=10.100.100.160/24
|
|
Q_FLOATING_ALLOCATION_POOL=start=10.100.100.160,end=10.100.100.192
|
|
|
|
PUBLIC_NETWORK_GATEWAY=10.100.100.3
|
|
|
|
Q_USE_SECGROUP=False
|
|
LIBVIRT_FIREWALL_DRIVER=nova.virt.firewall.NoopFirewallDriver
|
|
NEUTRON_CREATE_INITIAL_NETWORKS=False
|
|
Q_USE_PROVIDERNET_FOR_PUBLIC=True
|
|
|
|
HOST_IP=10.250.201.24
|
|
Q_ML2_PLUGIN_VLAN_TYPE_OPTIONS=(network_vlan_ranges=bridge:2001:3000)
|
|
OVS_BRIDGE_MAPPINGS=bridge:br-bridge
|
|
|
|
Q_ENABLE_TRICIRCLE=True
|
|
enable_plugin tricircle https://github.com/openstack/tricircle/
|
|
|
|
# Tricircle Services
|
|
enable_service t-api
|
|
enable_service t-ngw
|
|
enable_service t-cgw
|
|
enable_service t-job
|
|
|
|
# Use Neutron instead of nova-network
|
|
disable_service n-net
|
|
enable_service q-svc
|
|
enable_service q-svc1
|
|
enable_service q-dhcp
|
|
enable_service q-agt
|
|
enable_service q-l3
|
|
|
|
enable_service c-api
|
|
enable_service c-vol
|
|
enable_service c-sch
|
|
|
|
disable_service n-obj
|
|
disable_service c-bak
|
|
disable_service tempest
|
|
disable_service horizon
|