]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commit
Initial Modular L2 plugin implementation.
authorBob Kukura <rkukura@redhat.com>
Fri, 5 Oct 2012 15:50:39 +0000 (11:50 -0400)
committerBob Kukura <rkukura@redhat.com>
Wed, 29 May 2013 13:21:54 +0000 (09:21 -0400)
commitf572a5eb93bff8b57b8a8a4aa92df86750c0843a
treedfedd4f7001aae9bdb1d25cc3556b7d90873d7d1
parent010bfa6234679b0ba1771f561b128a6957b1c240
Initial Modular L2 plugin implementation.

The Modular L2 Plugin uses drivers to support separately extensible
sets of network types and of mechanisms for accessing networks of
those types. This is an initial implementation that has been tested
with the openvswitch and linuxbridge agents, and should also work with
the hyperv agent. See quantum/plugins/ml2/README for details.

Implements: blueprint modular-l2
Change-Id: Ia8cae480180f0990af7d5e5e56f29eaeac205e0e
25 files changed:
etc/quantum/plugins/ml2/ml2_conf.ini [new file with mode: 0644]
quantum/db/migration/alembic_migrations/versions/5ac71e65402c_ml2_initial.py [new file with mode: 0644]
quantum/db/migration/alembic_migrations/versions/folsom_initial.py
quantum/extensions/portbindings.py
quantum/extensions/providernet.py
quantum/plugins/ml2/README [new file with mode: 0644]
quantum/plugins/ml2/__init__.py [new file with mode: 0644]
quantum/plugins/ml2/config.py [new file with mode: 0644]
quantum/plugins/ml2/db.py [new file with mode: 0644]
quantum/plugins/ml2/driver_api.py [new file with mode: 0644]
quantum/plugins/ml2/drivers/__init__.py [new file with mode: 0644]
quantum/plugins/ml2/drivers/type_flat.py [new file with mode: 0644]
quantum/plugins/ml2/drivers/type_local.py [new file with mode: 0644]
quantum/plugins/ml2/drivers/type_vlan.py [new file with mode: 0644]
quantum/plugins/ml2/managers.py [new file with mode: 0644]
quantum/plugins/ml2/models.py [new file with mode: 0644]
quantum/plugins/ml2/plugin.py [new file with mode: 0644]
quantum/plugins/ml2/rpc.py [new file with mode: 0644]
quantum/tests/unit/ml2/__init__.py [new file with mode: 0644]
quantum/tests/unit/ml2/test_agent_scheduler.py [new file with mode: 0644]
quantum/tests/unit/ml2/test_ml2_plugin.py [new file with mode: 0644]
quantum/tests/unit/ml2/test_rpcapi.py [new file with mode: 0644]
quantum/tests/unit/ml2/test_security_group.py [new file with mode: 0644]
setup.cfg
tools/pip-requires