neutron-dynamic-routing/devstack
Akihiro Motoki 1241f9b603 Convert policy.json into policy-in-code
This commit converts the existing neutron-dynamic-routing policy.json
into policy-in-code.

Partially Implements: blueprint neutron-policy-in-code

Change-Id: I4f99739ca8b979ddf69c52c3f1b36e320326db8d
2018-12-18 21:28:51 +00:00
..
lib Convert policy.json into policy-in-code 2018-12-18 21:28:51 +00:00
README.rst Update docs 2018-02-20 12:38:57 +00:00
plugin.sh Add "neutron-bgp-dragent" to setup.cfg 2016-05-25 15:43:57 -07:00
settings devstack: Adapt to lib/neutron 2017-06-19 13:04:08 +09:00

README.rst

Enabling in Devstack

  1. Download devstack:

    git clone https://git.openstack.org/openstack-dev/devstack.git
  2. Add neutron-dynamic-routing to devstack. The minimal set of critical local.conf additions are following:

    cd devstack
    cat << EOF > local.conf
    > [[local|localrc]]
    > enable_plugin neutron-dynamic-routing https://git.openstack.org/openstack/neutron-dynamic-routing
    > EOF
  3. run devstack:

    ./stack.sh

Notes:

  1. In the default case, neutron-dynamic-routing is installed in allinone mode. In multiple nodes environment, for controller node:: cd devstack cat << EOF > local.conf > local > enable_plugin neutron-dynamic-routing https://git.openstack.org/openstack/neutron-dynamic-routing > DR_MODE=dr_plugin > EOF
    For the nodes where you want to run dr-agent::

    cd devstack cat << EOF > local.conf > local > enable_plugin neutron-dynamic-routing https://git.openstack.org/openstack/neutron-dynamic-routing > DR_MODE=dr_agent > EOF

  2. In the default case, protocol BGP is enabled for neutron-dynamic-routing. You can change "DR_SUPPORTED_PROTOCOLS" in "devstack/settings" to protocols wanted.