]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commit
The change implemented Lbaas CRUD Sqlalchemy operations.
authorLeon Cui <lcui@vmware.com>
Thu, 13 Dec 2012 00:04:24 +0000 (16:04 -0800)
committerSalvatore Orlando <salv.orlando@gmail.com>
Tue, 8 Jan 2013 19:16:15 +0000 (11:16 -0800)
commit220b3f265681891c2dfd7cc1d2548457a5a44ad2
treea4916a52d7878e321df9014a561381cbf3189306
parent7bbc9942d6c6131a5538b2df373f3a554b9fb4be
The change implemented Lbaas CRUD Sqlalchemy operations.

 - This change only contains the database access implementation
 of LBaaS API. There is no real configuration down to device
 side.
 - This change implements a loadbalancer plugin which doesn't
 do much thing but only db access. The object status needs to
 be updated when integrate with the lbaas agent.
 - This change follows the new LBaaS API 1.0 model. Please see
 the spec on wiki.

Implements: blueprint lbaas-plugin-api-crud
Change-Id: I1bccec8c29e3e9486506a5b52ce69af0480b2300
quantum/db/loadbalancer/__init__.py [new file with mode: 0644]
quantum/db/loadbalancer/loadbalancer_db.py [new file with mode: 0644]
quantum/extensions/loadbalancer.py
quantum/plugins/common/constants.py
quantum/plugins/services/loadbalancer/__init__.py [new file with mode: 0644]
quantum/plugins/services/loadbalancer/loadbalancerPlugin.py [new file with mode: 0644]
quantum/tests/unit/db/__init__.py [new file with mode: 0644]
quantum/tests/unit/db/loadbalancer/__init__.py [new file with mode: 0644]
quantum/tests/unit/db/loadbalancer/test_db_loadbalancer.py [new file with mode: 0644]