]> review.fuel-infra Code Review - openstack-build/neutron-build.git/log
openstack-build/neutron-build.git
13 years agoMerging changes.
Sumit Naiksatam [Wed, 3 Aug 2011 22:38:21 +0000 (15:38 -0700)]
Merging changes.

13 years agoMerging changes from lp:quantum
Sumit Naiksatam [Wed, 3 Aug 2011 22:20:55 +0000 (15:20 -0700)]
Merging changes from lp:quantum

13 years agoFixed an issue selecting the right port interface and also properly switching off...
Edgar Magana [Wed, 3 Aug 2011 20:29:43 +0000 (13:29 -0700)]
Fixed an issue selecting the right port interface and also properly switching off the Nexus Interface

13 years agoApplying fix for bug #814518
Salvatore Orlando [Wed, 3 Aug 2011 14:45:48 +0000 (15:45 +0100)]
Applying fix for bug #814518
Merging from lp:~salvatore-orlando/quantum/bug814518

13 years agoMerging the port profile client name fix.
Sumit Naiksatam [Wed, 3 Aug 2011 03:24:50 +0000 (20:24 -0700)]
Merging the port profile client name fix.

13 years agoEarlier fix resulted in a different issue (profile client name, was also being used...
Sumit Naiksatam [Wed, 3 Aug 2011 01:39:51 +0000 (18:39 -0700)]
Earlier fix resulted in a different issue (profile client name, was also being used as profile name, hence breaking).

13 years agoTruncated the port profile client name length to 16 characters (ucsm excepts max...
Sumit Naiksatam [Wed, 3 Aug 2011 00:08:58 +0000 (17:08 -0700)]
Truncated the port profile client name length to 16 characters (ucsm excepts max 17 chars).

13 years agoMergin fix for Bug 818321
Somik Behera [Tue, 2 Aug 2011 22:05:38 +0000 (15:05 -0700)]
Mergin fix for Bug 818321

Thanks lp:danwent !

13 years agoMerging approved OVS plugin configuration change branch.
Somik Behera [Tue, 2 Aug 2011 19:52:53 +0000 (12:52 -0700)]
Merging approved OVS plugin configuration change branch.
Thanks lp:danwent !

modified:
  quantum/plugins/openvswitch/ovs_quantum_plugin.ini

13 years agoMerging the brand new Quantum-client-library feature.
Somik Behera [Tue, 2 Aug 2011 19:40:57 +0000 (12:40 -0700)]
Merging the brand new Quantum-client-library feature.

Thanks to lp:tylesmit for this contribution to the Quantum project.

All, client, CLI, dashboard, Quantum API client, should now start
using this client library as our defacto "SDK" to program against
Quantum's Cloud Networking fabric.

added:
  quantum/client.py
  tests/unit/api.py
modified:
  quantum/cli.py

13 years agoRequests now send the Content-Type in the HTTP request
Tyler Smith [Tue, 2 Aug 2011 19:27:47 +0000 (12:27 -0700)]
Requests now send the Content-Type in the HTTP request

13 years agoIncluding a flag to activate the NX-OS driver
Edgar Magana [Tue, 2 Aug 2011 01:32:25 +0000 (18:32 -0700)]
Including a flag to activate the NX-OS driver
Updating the README documentation

13 years agoFixing pep8 errors
Tyler Smith [Mon, 1 Aug 2011 22:05:53 +0000 (15:05 -0700)]
Fixing pep8 errors

13 years agoAdding the Nexus OS driver based on the new PlugIn structure
Edgar Magana [Mon, 1 Aug 2011 19:40:07 +0000 (12:40 -0700)]
Adding the Nexus OS driver based on the new PlugIn structure

13 years agoMerging lp:quantum updates
Tyler Smith [Mon, 1 Aug 2011 15:47:35 +0000 (08:47 -0700)]
Merging lp:quantum updates

13 years agoFixing syntax issue. I had a 2.7+ style dict comprehension, so I made it 2.6 friendly.
Tyler Smith [Mon, 1 Aug 2011 15:40:10 +0000 (08:40 -0700)]
Fixing syntax issue. I had a 2.7+ style dict comprehension, so I made it 2.6 friendly.

13 years agoRemoving a debugging line
Tyler Smith [Mon, 1 Aug 2011 15:17:34 +0000 (08:17 -0700)]
Removing a debugging line

13 years agoFixing API behaviour for throwing 400 error on invalid body.
Salvatore Orlando [Mon, 1 Aug 2011 14:40:29 +0000 (15:40 +0100)]
Fixing API behaviour for throwing 400 error on invalid body.
Adding unit test for creating a port without request body.

13 years agopersistence of l2network & ucs plugins using mysql
rohitagarwalla [Mon, 1 Aug 2011 06:46:15 +0000 (23:46 -0700)]
persistence of l2network & ucs plugins using mysql
- db_conn.ini - configuration details of making a connection to the database
- db_test_plugin.py - contains abstraction methods for storing database values in a dict and unit test cases for DB testing
- l2network_db.py - db methods for l2network models
- l2network_models.py - class definitions for the l2 network tables
- ucs_db.py - db methods for ucs models
- ucs_models.py - class definition for the ucs tables
dynamic loading of the 2nd layer plugin db's based on passed arguments
Create, Delete, Get, Getall, Update database methods at - Quantum, L2Network and Ucs
Unit test cases for create, delete, getall and update operations for L2Network and Ucs plugins
pep8 checks done
branch based off revision 34 plugin-framework

changes after review comments -
merged the latest changes from plugin-framework branch - revision 39
confirming to the new directory structure and moving all db related modules into cisco/db folder
updated db_test_plugin.py
 - added import of cisco constants module
 - added getLogger to LOG for logging component name
 - updated import module paths for l2network_models/db and ucs_models/db to use the new directory structure
 - updated (rearranged) imports section to obey openstack alphabetical placement convention
updated db_conn.ini
 - updated database name from cisco_naas to quantum_l2network
unit test cases ran successfully and pep8 checks done again

-------------s This line and the following will be ignored --------------

added:
  quantum/plugins/cisco/db/db_conn.ini
  quantum/plugins/cisco/db/db_test_plugin.py
  quantum/plugins/cisco/db/l2network_db.py
  quantum/plugins/cisco/db/l2network_models.py
  quantum/plugins/cisco/db/ucs_db.py
  quantum/plugins/cisco/db/ucs_models.py
modified:
  quantum/plugins/cisco/README
pending merges:
  rohitagarwalla 2011-07-31 [merge] merged the latest changes from plugin-framework branch - revision 39
    rohitagarwalla 2011-07-29 persistence of l2network & ucs plugins using mysql

13 years agomerged the latest changes from plugin-framework branch - revision 39
rohitagarwalla [Mon, 1 Aug 2011 03:31:42 +0000 (20:31 -0700)]
merged the latest changes from plugin-framework branch - revision 39
conforming to the new cisco plugin directory structure and moving all db related modules into cisco/db folder
updated db_test_plugin.py
 - added import of cisco constants module
 - added LOG.getLogger for logging component name
 - updated import module paths for l2network_models/db and ucs_models/db to use the new directory structure
 - updated (rearranged) imports section to obey openstack alphabetical placement convention
updated db_conn.ini
 - updated database name from cisco_naas to quantum_l2network
unit test cases ran successfully and pep8 checks done again

13 years agoremoving a few additional lines that aren't needed once we don't calculate port count
Dan Wendlandt [Mon, 1 Aug 2011 01:21:59 +0000 (18:21 -0700)]
removing a few additional lines that aren't needed once we don't calculate port count

13 years agoAdding a tests directory, this can be used for plugin-specific test cases.
Sumit Naiksatam [Mon, 1 Aug 2011 01:00:56 +0000 (18:00 -0700)]
Adding a tests directory, this can be used for plugin-specific test cases.

13 years agoalso remove line that computes portcount, as it is unneeded now that we don't return it
Dan Wendlandt [Mon, 1 Aug 2011 00:46:35 +0000 (17:46 -0700)]
also remove line that computes portcount, as it is unneeded now that we don't return it

13 years agoIncluding copyright info.
Sumit Naiksatam [Sun, 31 Jul 2011 19:04:01 +0000 (12:04 -0700)]
Including copyright info.

13 years agomerge branch for to fix bug817826
Dan Wendlandt [Sun, 31 Jul 2011 19:01:37 +0000 (12:01 -0700)]
merge branch for to fix bug817826

13 years agoFor the modules to get added, missed in the earlier checkin.
Sumit Naiksatam [Sun, 31 Jul 2011 18:54:29 +0000 (11:54 -0700)]
For the modules to get added, missed in the earlier checkin.

13 years agoremove PortCount attribute of network object, as it is not in the spec and was causin...
Dan Wendlandt [Sun, 31 Jul 2011 18:53:36 +0000 (11:53 -0700)]
remove PortCount attribute of network object, as it is not in the spec and was causing us to hit bug 818321 (note: this commit does not fix the underlyingproblem with xml deserialization, it just makes sure we don't hit it with the existing API code)

13 years agoChanged the directory structure to a more organized one.
Sumit Naiksatam [Sun, 31 Jul 2011 18:38:26 +0000 (11:38 -0700)]
Changed the directory structure to a more organized one.
Fixed the imports to reflect the new structure.

13 years agoMerging the latest changes from lp:quantum.
Sumit Naiksatam [Sun, 31 Jul 2011 15:55:13 +0000 (08:55 -0700)]
Merging the latest changes from lp:quantum.

13 years agochange default integration bridge from br100 to br-int to reflect new default for...
Dan Wendlandt [Sat, 30 Jul 2011 05:27:40 +0000 (22:27 -0700)]
change default integration bridge from br100 to br-int to reflect new default for OVS vif-plugging in nova Diablo-3 release

13 years agofix bug 817826 and similar error in batch_config.py
Dan Wendlandt [Sat, 30 Jul 2011 05:20:52 +0000 (22:20 -0700)]
fix bug 817826 and similar error in batch_config.py

13 years agopersistence of l2network & ucs plugins using mysql
rohitagarwalla [Sat, 30 Jul 2011 03:48:41 +0000 (20:48 -0700)]
persistence of l2network & ucs plugins using mysql
- db_conn.ini - configuration details of making a connection to the database
- db_test_plugin.py - contains abstraction methods for storing database values in a dict and unit test cases for DB testing
- l2network_db.py - db methods for l2network models
- l2network_models.py - class definitions for the l2 network tables
- ucs_db.py - db methods for ucs models
- ucs_models.py - class definition for the ucs tables
dynamic loading of the 2nd layer plugin db's based on passed arguments
Create, Delete, Get, Getall, Update database methods at - Quantum, L2Network and Ucs
Unit test cases for create, delete, getall and update operations for L2Network and Ucs plugins
pep8 checks done
branch based off revision 34 plugin-framework

13 years agomerge Salvatore's api branch with fixes for tests. Tweaking branch to remove unwante...
Dan Wendlandt [Fri, 29 Jul 2011 23:39:45 +0000 (16:39 -0700)]
merge Salvatore's api branch with fixes for tests.  Tweaking branch to remove unwanted bin/quantum.py as part of merge

13 years agoMerging in main repo updates
Tyler Smith [Fri, 29 Jul 2011 21:42:07 +0000 (14:42 -0700)]
Merging in main repo updates

13 years agoUpdating to fix some SSL issues
Tyler Smith [Fri, 29 Jul 2011 21:38:26 +0000 (14:38 -0700)]
Updating to fix some SSL issues

13 years agoRemoving extra quantum.py file from source control
Salvatore Orlando [Fri, 29 Jul 2011 21:22:59 +0000 (22:22 +0100)]
Removing extra quantum.py file from source control
removing unused import from quantum/api/__init__.py

13 years agoApply fix for bug #817813
Salvatore Orlando [Fri, 29 Jul 2011 16:41:37 +0000 (17:41 +0100)]
Apply fix for bug #817813
Merging lp:~danwent/quantum/bug817813

13 years agoApply fix for bug #814012
Salvatore Orlando [Fri, 29 Jul 2011 16:39:12 +0000 (17:39 +0100)]
Apply fix for bug #814012
Merging lp:~danwent/quantum/bug814012

13 years agoApply fix for bug #814517
Salvatore Orlando [Fri, 29 Jul 2011 16:36:35 +0000 (17:36 +0100)]
Apply fix for bug #814517
merging lp:~tylesmit/quantum/quantum-bug-814517

13 years agobug 817813: default provider in plugins.ini accidentally changed. Changing it back...
Dan Wendlandt [Fri, 29 Jul 2011 02:08:56 +0000 (19:08 -0700)]
bug 817813: default provider in plugins.ini accidentally changed.  Changing it back to FakePlugin

13 years agoChanged the param name "network-name" to "net-name" since the Quantum service expects...
Sumit Naiksatam [Fri, 29 Jul 2011 01:28:07 +0000 (18:28 -0700)]
Changed the param name "network-name" to "net-name" since the Quantum service expects the later.

13 years agoRemoving some legacy code from the unit tests
Tyler Smith [Thu, 28 Jul 2011 17:49:18 +0000 (10:49 -0700)]
Removing some legacy code from the unit tests

13 years agoAdding unit tests to cover the client library
Tyler Smith [Thu, 28 Jul 2011 17:42:17 +0000 (10:42 -0700)]
Adding unit tests to cover the client library

13 years agoChanging the CLI to use the new client library
Tyler Smith [Thu, 28 Jul 2011 17:41:54 +0000 (10:41 -0700)]
Changing the CLI to use the new client library

13 years agoAdding refactored API Client
Tyler Smith [Thu, 28 Jul 2011 17:41:06 +0000 (10:41 -0700)]
Adding refactored API Client

13 years agopep8 fixes
Dan Wendlandt [Wed, 27 Jul 2011 17:24:17 +0000 (10:24 -0700)]
pep8 fixes

13 years agofix bug 814012, add unit tests for it
Dan Wendlandt [Wed, 27 Jul 2011 16:33:21 +0000 (09:33 -0700)]
fix bug 814012, add unit tests for it

13 years agoResolving Bug 814517 which caused XML to have extra whitespace.
Tyler Smith [Wed, 27 Jul 2011 14:33:09 +0000 (07:33 -0700)]
Resolving Bug 814517 which caused XML to have extra whitespace.

13 years agoMerge changes from lp:quantum
Sumit Naiksatam [Sun, 24 Jul 2011 17:00:33 +0000 (10:00 -0700)]
Merge changes from lp:quantum

13 years agoApply fix for bug #797419
Salvatore Orlando [Fri, 22 Jul 2011 12:13:48 +0000 (13:13 +0100)]
Apply fix for bug #797419
merging lp:~salvatore-orlando/quantum/bug797419

13 years agoRe-fixing issues with XML deserialization (changes got lost in merges with trunk)
Salvatore Orlando [Fri, 22 Jul 2011 09:51:22 +0000 (10:51 +0100)]
Re-fixing issues with XML deserialization (changes got lost in merges with trunk)
Adapting assertions in unit tests merged from trunk to reflect changes in the API due to RFE requested by Erik Carlin

13 years agoMerging branch lp:~salvatore-orlando/quantum/bug802892
Salvatore Orlando [Fri, 22 Jul 2011 07:04:35 +0000 (08:04 +0100)]
Merging branch lp:~salvatore-orlando/quantum/bug802892
Fixing bug #802892

13 years agoMerging branch lp:~netstack/quantum/quantum-unit-tests
Salvatore Orlando [Fri, 22 Jul 2011 07:01:43 +0000 (08:01 +0100)]
Merging branch lp:~netstack/quantum/quantum-unit-tests

Provides functionality as specified by blueprint https://blueprints.launchpad.net/quantum/+spec/api-spec-unit-tests

13 years agoFixing silly pep8 error
Salvatore Orlando [Thu, 21 Jul 2011 16:37:24 +0000 (17:37 +0100)]
Fixing silly pep8 error

13 years agoMerge with quantum-unit-tests
Salvatore Orlando [Thu, 21 Jul 2011 16:24:24 +0000 (17:24 +0100)]
Merge with quantum-unit-tests

13 years agodoh
Salvatore Orlando [Thu, 21 Jul 2011 15:54:23 +0000 (16:54 +0100)]
doh

13 years agoRestoring quantum_plugin_base to previous state.
Salvatore Orlando [Thu, 21 Jul 2011 15:34:58 +0000 (16:34 +0100)]
Restoring quantum_plugin_base to previous state.
Will discuss in the future whether allow API layer to pass options to plugins upon initialization.

13 years agoUnit tests for API completed
Salvatore Orlando [Mon, 18 Jul 2011 22:51:22 +0000 (23:51 +0100)]
Unit tests for API completed
fixed pep8 errors

13 years agoAdd TESTING document: description and polices for quantum tests
Brad Hall [Mon, 18 Jul 2011 20:44:48 +0000 (13:44 -0700)]
Add TESTING document: description and polices for quantum tests

13 years agoAdding more unit tests
Salvatore Orlando [Mon, 18 Jul 2011 16:56:42 +0000 (17:56 +0100)]
Adding more unit tests

13 years agoadd extension code in.(last push does not include this directory.)
Ying Liu [Sat, 16 Jul 2011 00:40:33 +0000 (17:40 -0700)]
add extension code in.(last push does not include this directory.)

13 years agoadd api extensions (including portprofiles resources and associate/disassociate actions.)
Ying Liu [Sat, 16 Jul 2011 00:33:36 +0000 (17:33 -0700)]
add api extensions (including portprofiles resources and associate/disassociate actions.)

13 years agoMerge latest from lp:quantum (picking up API framework changes like quantum/manager...
Sumit Naiksatam [Fri, 15 Jul 2011 23:57:03 +0000 (16:57 -0700)]
Merge latest from lp:quantum (picking up API framework changes like quantum/manager.py and resource controller changes).

13 years agoChanges to support port-profile extension.
Sumit Naiksatam [Fri, 15 Jul 2011 01:24:39 +0000 (18:24 -0700)]
Changes to support port-profile extension.
Fixed an error in the README file.

13 years agoVery initial version of the nxos driver .... lets call it ver 0.0.1!
Debo [Fri, 15 Jul 2011 00:11:55 +0000 (17:11 -0700)]
Very initial version of the nxos driver .... lets call it ver 0.0.1!

yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy

added:
  quantum/plugins/cisco/nxosapi.py

13 years agoRemoving code related to functional tests
Salvatore Orlando [Thu, 14 Jul 2011 11:47:49 +0000 (12:47 +0100)]
Removing code related to functional tests

13 years agoPorting shell script get-vif.sh to python module get-vif.py for cisco ucsm module
rohitagarwalla roagarwa@cisco.com [Wed, 13 Jul 2011 19:39:09 +0000 (12:39 -0700)]
Porting shell script get-vif.sh to python module get-vif.py for cisco ucsm module

13 years agoMerge pep8 changes
Sumit Naiksatam [Tue, 12 Jul 2011 22:23:23 +0000 (15:23 -0700)]
Merge pep8 changes

13 years agoRequired for recognizing the "cisco" package. Missed in the initial checkin.
Sumit Naiksatam [Tue, 12 Jul 2011 21:50:49 +0000 (14:50 -0700)]
Required for recognizing the "cisco" package. Missed in the initial checkin.

13 years agoApplying fix for bug #804237
Salvatore Orlando [Fri, 8 Jul 2011 23:34:49 +0000 (00:34 +0100)]
Applying fix for bug #804237
from branch lp:~salvatore-orlando/quantum/bug804237

13 years agominor pep8 fix.
Rick Clark [Fri, 8 Jul 2011 22:46:20 +0000 (17:46 -0500)]
minor pep8 fix.

13 years agoChanged some credentials (does not affect functionality).
Sumit Naiksatam [Fri, 8 Jul 2011 21:40:56 +0000 (14:40 -0700)]
Changed some credentials (does not affect functionality).

13 years agoThis file is not required.
Sumit Naiksatam [Fri, 8 Jul 2011 21:29:45 +0000 (14:29 -0700)]
This file is not required.

13 years agoInitial checkin for the L2-Network Plugin with all the associated modules and artifacts.
Sumit Naiksatam [Fri, 8 Jul 2011 16:34:04 +0000 (09:34 -0700)]
Initial checkin for the L2-Network Plugin with all the associated modules and artifacts.

13 years agoremoving pep8 errors
Salvatore Orlando [Wed, 6 Jul 2011 11:41:13 +0000 (12:41 +0100)]
removing pep8 errors

13 years agoAdded more unit tests for API
Salvatore Orlando [Wed, 6 Jul 2011 11:23:18 +0000 (12:23 +0100)]
Added more unit tests for API
Starting work on functional tests, importing code from Glance

13 years agoNow REALLY using in-memory db
Salvatore Orlando [Tue, 5 Jul 2011 17:27:26 +0000 (18:27 +0100)]
Now REALLY using in-memory db

13 years agoAdapated plugin infrastructure to allow API to pass options to plugins
Salvatore Orlando [Tue, 5 Jul 2011 16:50:30 +0000 (17:50 +0100)]
Adapated plugin infrastructure to allow API to pass options to plugins
Now using in-memory sqlite db for tests on FakePlugin
teardown() now 'resets' the in-memory db
Adding unit tests for APIs

13 years agoFixing error introduced in find_config
Salvatore Orlando [Tue, 5 Jul 2011 10:27:12 +0000 (11:27 +0100)]
Fixing error introduced in find_config

13 years agoRemoving excess debug line
Salvatore Orlando [Tue, 5 Jul 2011 09:24:13 +0000 (10:24 +0100)]
Removing excess debug line

13 years agoFixing syntax errors in db/models.py
Salvatore Orlando [Tue, 5 Jul 2011 00:08:18 +0000 (01:08 +0100)]
Fixing syntax errors in db/models.py

13 years agoTemporary commit
Salvatore Orlando [Mon, 4 Jul 2011 17:50:45 +0000 (18:50 +0100)]
Temporary commit

13 years agoNow loading plugin before setting up routes.
Salvatore Orlando [Mon, 4 Jul 2011 10:43:16 +0000 (11:43 +0100)]
Now loading plugin before setting up routes.
Passing same plugin instance to API controllers.

Also renamed 'network_manager' to 'plugin' in API controllers.

13 years agoAdding unit test
Salvatore Orlando [Fri, 1 Jul 2011 11:20:31 +0000 (12:20 +0100)]
Adding unit test
Applying pep8 fixes

Note: teardown does not yet work properly. Thinking about replacing it with something that simply deletes the temporary sql lite db.

13 years agoStarting implementation of unit tests
Salvatore Orlando [Thu, 30 Jun 2011 17:13:01 +0000 (18:13 +0100)]
Starting implementation of unit tests
Fixing minor bugs with FakePlugin

13 years agoRemoving static data for FakePlugin
Salvatore Orlando [Wed, 29 Jun 2011 15:48:55 +0000 (16:48 +0100)]
Removing static data for FakePlugin

13 years ago- Unit tests will use FakePlugin
Salvatore Orlando [Wed, 29 Jun 2011 15:40:15 +0000 (16:40 +0100)]
- Unit tests will use FakePlugin
- FakePlugin adapted to db API with sqlite
- db Models updated to inherit from generic Quantum Base model (provides utility functions and capabilities for treating db objects as dicts - see nova.db.models.NovaBase)
- functional tests commented out temporarily. Will un-comment when code for starting actual service is in place

13 years agoAdding Routes>=1.12.3 to tools/pip-requires
Salvatore Orlando [Wed, 29 Jun 2011 10:18:12 +0000 (11:18 +0100)]
Adding Routes>=1.12.3 to tools/pip-requires

13 years agoWork in progress - just starting
Salvatore Orlando [Tue, 28 Jun 2011 17:04:27 +0000 (18:04 +0100)]
Work in progress - just starting

13 years ago...and again!
Salvatore Orlando [Tue, 28 Jun 2011 09:43:11 +0000 (10:43 +0100)]
...and again!

13 years agoI hope I get the commit right now
Salvatore Orlando [Tue, 28 Jun 2011 09:42:30 +0000 (10:42 +0100)]
I hope I get the commit right now

13 years agoremoving "quantum" folder as well from etc
Salvatore Orlando [Tue, 28 Jun 2011 09:41:40 +0000 (10:41 +0100)]
removing "quantum" folder as well from etc

13 years agoremoving api-paste.ini
Salvatore Orlando [Tue, 28 Jun 2011 09:37:48 +0000 (10:37 +0100)]
removing api-paste.ini

13 years agoAddressing comments from Somik
Salvatore Orlando [Tue, 28 Jun 2011 09:29:08 +0000 (10:29 +0100)]
Addressing comments from Somik

13 years agoMerging dan wendlandt's bugfixes for Bug #800466 and improvements that enable Quantum...
Somik Behera [Mon, 27 Jun 2011 23:34:28 +0000 (16:34 -0700)]
Merging dan wendlandt's bugfixes for Bug #800466 and improvements that enable Quantum to seamlessly
run on KVM!

removed:
  quantum/plugins/openvswitch/agent/set_external_ids.sh
added:
  tools/batch_config.py
renamed:
  quantum/plugins/openvswitch/agent/install.sh => quantum/plugins/openvswitch/agent/xenserver_install.sh
modified:
  quantum/cli.py
  quantum/db/api.py
  quantum/plugins/openvswitch/README
  quantum/plugins/openvswitch/agent/ovs_quantum_agent.py
  quantum/plugins/openvswitch/ovs_db.py
  quantum/plugins/openvswitch/ovs_models.py
  quantum/plugins/openvswitch/ovs_quantum_plugin.ini
  quantum/plugins/openvswitch/ovs_quantum_plugin.py
pending merges:
  Dan Wendlandt 2011-06-27 fix pep8 introduced by trunk merge
    Dan Wendlandt 2011-06-27 [merge] merge
    Dan Wendlandt 2011-06-27 more pep8 goodness
    Dan Wendlandt 2011-06-25 refactor batch_config, allow multiple attaches with the empty string
    Dan Wendlandt 2011-06-21 [merge] merge and pep8 cleanup
    Dan Wendlandt 2011-06-21 add example to usage string for batch_config.py
    Dan Wendlandt 2011-06-21 Bug fixes and clean-up, including supporting libvirt

13 years agofix pep8 introduced by trunk merge
Dan Wendlandt [Mon, 27 Jun 2011 23:11:09 +0000 (16:11 -0700)]
fix pep8 introduced by trunk merge

13 years agoA small start on unit tests: mostly a proof of concept that contains a test
Brad Hall [Mon, 27 Jun 2011 23:08:58 +0000 (16:08 -0700)]
A small start on unit tests: mostly a proof of concept that contains a test
for api/ports.py

13 years agoAdded some more plugin agnostic tests (attachment and negative tests) and some
Brad Hall [Mon, 27 Jun 2011 23:07:03 +0000 (16:07 -0700)]
Added some more plugin agnostic tests (attachment and negative tests) and some
pep8 fixes.

13 years agomerge
Dan Wendlandt [Mon, 27 Jun 2011 16:30:08 +0000 (09:30 -0700)]
merge

13 years agomore pep8 goodness
Dan Wendlandt [Mon, 27 Jun 2011 16:27:18 +0000 (09:27 -0700)]
more pep8 goodness