]> review.fuel-infra Code Review - openstack-build/neutron-build.git/log
openstack-build/neutron-build.git
11 years agoImported Translations from Transifex
OpenStack Jenkins [Tue, 16 Apr 2013 00:08:16 +0000 (00:08 +0000)]
Imported Translations from Transifex

Change-Id: I7aadfd763ee1904ad11fb5c4f82101f5a4e6dc5e

11 years agoImported Translations from Transifex
OpenStack Jenkins [Sun, 14 Apr 2013 00:07:19 +0000 (00:07 +0000)]
Imported Translations from Transifex

Change-Id: I9ce7385c4134a5d81164b989d033e3fce8f158a4

11 years agoImported Translations from Transifex
OpenStack Jenkins [Sat, 13 Apr 2013 00:08:23 +0000 (00:08 +0000)]
Imported Translations from Transifex

Change-Id: Ia14f9917bece2fc7add0d389ef91f6611de7023a

11 years agoMerge "Enable automatic validation of many HACKING rules."
Jenkins [Fri, 12 Apr 2013 15:10:32 +0000 (15:10 +0000)]
Merge "Enable automatic validation of many HACKING rules."

11 years agoMerge "Shorten the path of the nicira nvp plugin."
Jenkins [Fri, 12 Apr 2013 04:08:58 +0000 (04:08 +0000)]
Merge "Shorten the path of the nicira nvp plugin."

11 years agoImported Translations from Transifex
OpenStack Jenkins [Fri, 12 Apr 2013 00:07:23 +0000 (00:07 +0000)]
Imported Translations from Transifex

Change-Id: Ib2ba93e3c9754de63f030b9572a108343bae9c74

11 years agoMerge "Ensure unit tests work with all interface types"
Jenkins [Thu, 11 Apr 2013 23:56:22 +0000 (23:56 +0000)]
Merge "Ensure unit tests work with all interface types"

11 years agoEnable automatic validation of many HACKING rules.
Maru Newby [Fri, 5 Apr 2013 23:08:40 +0000 (23:08 +0000)]
Enable automatic validation of many HACKING rules.

 * Add hacking to the tox build - a set of flake8 plugins that
   perform automatic validation of many HACKING.rst rules.
 * This patch configures hacking in the tox build and performs
   the mechanical cleanup required to allow the checks to pass.
 * See https://pypi.python.org/pypi/hacking

Change-Id: Ie9b3eb5627a9b6dd181f79225abae422e6cf3777

11 years agoEnsure unit tests work with all interface types
Gary Kotton [Wed, 10 Apr 2013 19:15:12 +0000 (19:15 +0000)]
Ensure unit tests work with all interface types

Fixes bug 1167520

Change-Id: I42ed3a5718d771924caffba3f58340e7f1d2e2ad

11 years agoShorten the path of the nicira nvp plugin.
Maru Newby [Fri, 5 Apr 2013 16:59:58 +0000 (16:59 +0000)]
Shorten the path of the nicira nvp plugin.

 * s+[/.]nicira_nvp_plugin++
 * Backwards compatibility is maintained by importing the
   nicira package as nicira_nvp_plugin in the plugins package.
 * It may be necessary to remove stale .pyc/.pyo files under the
   nicira path after applying this patch.
 * DocImpact
 * Addresses bug 1166307

Change-Id: I241a2a75106398506b01bcb7a6ddbaafa1b7bd30

11 years agoImplement LB plugin delete_pool_health_monitor().
Roman Podolyaka [Thu, 11 Apr 2013 10:12:14 +0000 (13:12 +0300)]
Implement LB plugin delete_pool_health_monitor().

Fixes bug 1166400.

Change-Id: I58145366bab3798232d616c98ed9532f71834089

11 years agoMerge "Parallelize quantum unit testing:"
Jenkins [Wed, 10 Apr 2013 21:38:13 +0000 (21:38 +0000)]
Merge "Parallelize quantum unit testing:"

11 years agoMake "shared" filter more compatible with diff DBs
zhhuabj [Mon, 1 Apr 2013 05:30:00 +0000 (13:30 +0800)]
Make "shared" filter more compatible with diff DBs

For the type BOOLEAN, in sqlalchemy,
it's mapped to BOOLEAN type if the backend database supports it,
otherwise, it's mapped to one of the Integer types, like SMALLINT,
and restrict the values to 1(True) and 0(False).

query_filter = (... | model.shared))
The above filter will generate a SQL where clause like:
where ... OR xxx.shared

This is not supported in databases which don't support BOOLEAN type.
Change it as below to make it more compatible:
query_filter = (... | model.shared == True))

It will generate a SQL where clause as below:
where ... OR xxx.shared = ?

In Python, True == 1, so this change is compatible
with both databases supporting BOOLEAN and those not supporting it.

Fix bug 1161195

Change-Id: Ic0ce0816d63b576a3469de0ed92cae4b19a3690e

11 years agoMerge "Allow pdb debugging in manually-invoked tests."
Jenkins [Wed, 10 Apr 2013 06:28:53 +0000 (06:28 +0000)]
Merge "Allow pdb debugging in manually-invoked tests."

11 years agoImported Translations from Transifex
OpenStack Jenkins [Wed, 10 Apr 2013 00:14:04 +0000 (00:14 +0000)]
Imported Translations from Transifex

Change-Id: Ia4090ae2421dc2df9e97f18cdc6830aebafdba1a

11 years agoImprove the deprecated message about DEFAULT.root_helper
Akihiro MOTOKI [Tue, 9 Apr 2013 10:15:46 +0000 (19:15 +0900)]
Improve the deprecated message about DEFAULT.root_helper

bug #1166706

Change-Id: Ic90fefefc0c3339cbc876e4402b6d6c5aa841c47

11 years agoUpdate to the latest oslo loopingcall.
Michael Still [Tue, 9 Apr 2013 03:42:47 +0000 (13:42 +1000)]
Update to the latest oslo loopingcall.

This renames a class from loopingcall.LoopingCall to
loopingcall.FixedIntervalLoopingCall.

Change-Id: If51d3f4cc2a393f730cd168b16d444725151dbf4

11 years agoAllow pdb debugging in manually-invoked tests.
Maru Newby [Tue, 9 Apr 2013 02:33:03 +0000 (02:33 +0000)]
Allow pdb debugging in manually-invoked tests.

 * The old behavior required setting environment variables to
   disable capture of stdout and stderr to allow debugging via pdb.
   The new behavior requires enabling capture of stdout/stderr
   instead. This is already the case in nova.
 * testr behavior is unmodified.
 * Tip 'o the hat to Robert Collins (lifeless)

Change-Id: Ica021eeab07d5a540ce42436c9cc8000c3fd239a

11 years agoImported Translations from Transifex
OpenStack Jenkins [Tue, 9 Apr 2013 00:14:24 +0000 (00:14 +0000)]
Imported Translations from Transifex

Change-Id: I39ef28abfa51c6f41eace1b116b5d444d0c04207

11 years agoMerge "refactor _get_sync_routers to use get_routers."
Jenkins [Mon, 8 Apr 2013 09:02:03 +0000 (09:02 +0000)]
Merge "refactor _get_sync_routers to use get_routers."

11 years agoMerge "Sync with oslo-incubator copy of setup.py"
Jenkins [Mon, 8 Apr 2013 07:40:58 +0000 (07:40 +0000)]
Merge "Sync with oslo-incubator copy of setup.py"

11 years agorefactor _get_sync_routers to use get_routers.
gongysh [Wed, 20 Mar 2013 01:22:52 +0000 (09:22 +0800)]
refactor _get_sync_routers to use get_routers.

By using get_routers, get_sync_data() can get all attributes
including attributes provided by extensions which extend router ext.

Change-Id: I4be761dadd18eed19f4e54676e77d99bcc4a4745

11 years agoL3NatExtensionTestCase: super.setup should be invoked once
Salvatore Orlando [Sun, 7 Apr 2013 20:05:48 +0000 (22:05 +0200)]
L3NatExtensionTestCase: super.setup should be invoked once

Bug 1165989

Change-Id: If05342701162982035f6f857557df219ce65f240

11 years agoSync with oslo-incubator copy of setup.py
Davanum Srinivas [Mon, 8 Apr 2013 00:44:21 +0000 (20:44 -0400)]
Sync with oslo-incubator copy of setup.py

Keep up with the changes to the master copy

Change-Id: I5c8f9053b95a1eb0e903365ba12247458d3fb8de

11 years agoImported Translations from Transifex
OpenStack Jenkins [Mon, 8 Apr 2013 00:03:39 +0000 (00:03 +0000)]
Imported Translations from Transifex

Change-Id: Ie45e8014df4e416f96657cc7bd89930bd953228a

11 years agoImported Translations from Transifex
OpenStack Jenkins [Sun, 7 Apr 2013 00:03:52 +0000 (00:03 +0000)]
Imported Translations from Transifex

Change-Id: I46c5a94d3e495fe2c64642a1d4e5d4af34203aec

11 years agoMerge "Reformat openstack-common.conf"
Jenkins [Sat, 6 Apr 2013 20:43:00 +0000 (20:43 +0000)]
Merge "Reformat openstack-common.conf"

11 years agoReformat openstack-common.conf
Zhongyue Luo [Sat, 6 Apr 2013 03:06:41 +0000 (11:06 +0800)]
Reformat openstack-common.conf

Use the new 'module' option in openstack-common.conf which is a
multi-string option, allowing each module name to be placed on a
separate line.

This makes it much easier to review changes to the modules list.

Change-Id: I64dff89639f9d136ded3d25aab9f8f85a2d7112b

11 years agoImported Translations from Transifex
OpenStack Jenkins [Sat, 6 Apr 2013 00:06:00 +0000 (00:06 +0000)]
Imported Translations from Transifex

Change-Id: I264a93786f74aaed378c89ee19dab8a5a289d731

11 years agoMerge "Switch to flake8 from pep8."
Jenkins [Fri, 5 Apr 2013 01:44:53 +0000 (01:44 +0000)]
Merge "Switch to flake8 from pep8."

11 years agoImported Translations from Transifex
OpenStack Jenkins [Fri, 5 Apr 2013 00:06:32 +0000 (00:06 +0000)]
Imported Translations from Transifex

Change-Id: Ie9108ffeaa267ad932105b0e6d1f770f35896d17

11 years agoMerge "Add expected IDs to router.interface.* notifications"
Jenkins [Thu, 4 Apr 2013 20:08:57 +0000 (20:08 +0000)]
Merge "Add expected IDs to router.interface.* notifications"

11 years agoAdd expected IDs to router.interface.* notifications
Eoghan Glynn [Tue, 26 Mar 2013 16:27:05 +0000 (16:27 +0000)]
Add expected IDs to router.interface.* notifications

Fixes bug 1160431

The router.interface.{create|delete} notifications are intended to be
consumed by ceilometer, but did not include the router or tenant IDs
in the RPC message payload. Ceilometer requires both these data for
metering purposes.

The missing UUIDs are now provided in the notifications.

Change-Id: I1ca6e1d5377100a0549293e0bdff0182711c750f

11 years agoSwitch to flake8 from pep8.
Maru Newby [Thu, 4 Apr 2013 04:10:23 +0000 (04:10 +0000)]
Switch to flake8 from pep8.

 * flake8 supports more checks than pep8 (e.g. detection of
   unused imports and variables), and has an extension mechanism.
   A plugin to support automatic HACKING validation is planned.
 * See: http://flake8.readthedocs.org/

Change-Id: I8c9314c606802109a4d01908dbc74ecb792ad0ac

11 years agoImported Translations from Transifex
OpenStack Jenkins [Thu, 4 Apr 2013 00:06:11 +0000 (00:06 +0000)]
Imported Translations from Transifex

Change-Id: I664f6de7988fc4987601df5a693347b131544e2f

11 years agoRevert "Use wrappers instead of direct calls to ip route."
Aaron Rosen [Wed, 3 Apr 2013 22:13:20 +0000 (15:13 -0700)]
Revert "Use wrappers instead of direct calls to ip route."

This commit somehow broken floating ips with the l3 agent so we should revert
it till we figure out why.

This reverts commit f80f06a71de6e235c71e0333448cf59e44745c45.

Change-Id: Ic93eec0d95ad20baf53cc97476fcdff1b308ae91

11 years agoParallelize quantum unit testing:
Tim Miller [Sun, 10 Mar 2013 22:23:46 +0000 (15:23 -0700)]
Parallelize quantum unit testing:

This change switches run_tests.sh to use testr
in parallel mode, instead of nosetests, in order
to enable unit tests to run in parallel.

By default, the number of parallel test processes
is set to the number of cores on the test machine.

A similar change was recently merged to nova:
  https://review.openstack.org/#/c/15078/

Some tests required updating to remove inter-testcase
dependencies.

bug #1099694

Change-Id: Idfb923d424342a07dcba88d70b971683f549f763

11 years agoAdd missing security group quota settings to quantum.conf
Aaron Rosen [Wed, 3 Apr 2013 21:15:24 +0000 (14:15 -0700)]
Add missing security group quota settings to quantum.conf

Fixes bug 1164154

Change-Id: I32d1952fcc11559cc01c0dbde11de558b2a0b1fb

11 years agoMerge "Use wrappers instead of direct calls to ip route."
Jenkins [Wed, 3 Apr 2013 16:50:19 +0000 (16:50 +0000)]
Merge "Use wrappers instead of direct calls to ip route."

11 years agoUse wrappers instead of direct calls to ip route.
Roman Podolyaka [Wed, 20 Mar 2013 16:50:50 +0000 (18:50 +0200)]
Use wrappers instead of direct calls to ip route.

 - extract the logic of ip route wrapper into a separate
   class to drop dependency on a specific network device
 - add route wrapper to IPWrapper class
 - use IPWrapper instead of direct calls to ip route in l3 agent
 - update tests

Fixes bug 1133133.

Change-Id: Ic7174b0676d1a565909bb5f6f950376cf8fae8d2

11 years agoMerge "Add RabbitMQ and QPID HA support flags to quantum.conf"
Jenkins [Wed, 3 Apr 2013 07:25:11 +0000 (07:25 +0000)]
Merge "Add RabbitMQ and QPID HA support flags to quantum.conf"

11 years agoImported Translations from Transifex
OpenStack Jenkins [Wed, 3 Apr 2013 00:06:55 +0000 (00:06 +0000)]
Imported Translations from Transifex

Change-Id: I8b0c8543dc7c88f017814ba1401512aabe418964

11 years agoMerge "Fix lb-vip does not get route to default gw"
Jenkins [Tue, 2 Apr 2013 19:42:54 +0000 (19:42 +0000)]
Merge "Fix lb-vip does not get route to default gw"

11 years agoAdd RabbitMQ and QPID HA support flags to quantum.conf
EmilienM [Tue, 26 Mar 2013 13:43:12 +0000 (14:43 +0100)]
Add RabbitMQ and QPID HA support flags to quantum.conf

Since Quantum supports HA queues with RabbitMQ (https://review.openstack.org/#/c/13760/),
quantum.conf should provide new flags for explain how to configure multiple RabbitMQ servers and enable HA.

New flags :
rabbit_hosts=$rabbit_host:$rabbit_port
rabbit_ha_queues=false
qpid_hosts = localhost:5672

Fix Bug #1160369

Change-Id: I35903b1b7b66fde8d70ac7e8076e0def2a1f2d04

11 years agoblueprint cisco-single-config
Rich Curran [Tue, 5 Feb 2013 20:55:28 +0000 (15:55 -0500)]
blueprint cisco-single-config

Scope: Unification of all the various plugin files for the Cisco plugin into a single file.

Use Cases: Quantum with the Cisco plugin.

Implementation Overview: All the config values contained in the various files in
etc/quantum/plugins/cisco will be unified into a single file
etc/quantum/plugins/cisco/cisco_plugin.ini. The plugins needs to be modified to
read from a single file instead of multiple.
Added quantum.openstack.common.cfg support.

Change-Id: I9ef356eccfe330c3733f441b96400d03c3d7d1df

11 years agoFix unit tests for RHEL
Gary Kotton [Tue, 2 Apr 2013 15:52:37 +0000 (15:52 +0000)]
Fix unit tests for RHEL

Fixes bug 1158609
Fixes bug 1158612

Change-Id: I5ee6214a935cfa663c96b1ba6893f265890c4202

11 years agoMerge "Return unicode for object in json and xml serializer"
Jenkins [Tue, 2 Apr 2013 15:50:19 +0000 (15:50 +0000)]
Merge "Return unicode for object in json and xml serializer"

11 years agoUpdate Ryu plugin README
Yoshihiro Kaneko [Tue, 2 Apr 2013 08:51:44 +0000 (17:51 +0900)]
Update Ryu plugin README

Fixes bug #1163181

Update Ryu plugin README file to refer to the new URL that describe
how to configure the plugin.

Change-Id: I84486f022bddd28a534e971e1132c70f10ad7c04

11 years agoMerge "Enable authZ checks for member actions"
Jenkins [Tue, 2 Apr 2013 07:14:06 +0000 (07:14 +0000)]
Merge "Enable authZ checks for member actions"

11 years agoFix lb-vip does not get route to default gw
Aaron Rosen [Mon, 1 Apr 2013 22:26:12 +0000 (15:26 -0700)]
Fix lb-vip does not get route to default gw

Previously when creating a lb-vip it would be created without
a default gw. This patch fixes that and adds unit tests to check
that route add is called if the subnet has a gateway_ip.

Fixes bug 1162626

Change-Id: I155749fa6d9c843fca87a73f3cf85720aac26cfa

11 years agoImported Translations from Transifex
OpenStack Jenkins [Tue, 2 Apr 2013 00:06:16 +0000 (00:06 +0000)]
Imported Translations from Transifex

Change-Id: I7db9bfb2a9fee9b03d396f5dac4cf4b13a18a51c

11 years agoMerge "Fix for Cisco plugin physical device config error"
Jenkins [Mon, 1 Apr 2013 11:42:46 +0000 (11:42 +0000)]
Merge "Fix for Cisco plugin physical device config error"

11 years agoMerge "Prevents a portinfo deletion in vm migration with NEC plugin."
Jenkins [Mon, 1 Apr 2013 10:31:18 +0000 (10:31 +0000)]
Merge "Prevents a portinfo deletion in vm migration with NEC plugin."

11 years agoReturn unicode for object in json and xml serializer
He Jie Xu [Tue, 26 Mar 2013 23:42:20 +0000 (07:42 +0800)]
Return unicode for object in json and xml serializer

Fix bug 1160644
Fix bug 1119790

When try to serialize an exception object as json, it failed
with 'ValueError: Circular reference detected' that is same error
as bug 119790. So this patch fixes bug 119790 too.

Change-Id: I0da2616f4ec59da31be054b8be2f7a140f59d63a

11 years agoImported Translations from Transifex
OpenStack Jenkins [Mon, 1 Apr 2013 00:06:20 +0000 (00:06 +0000)]
Imported Translations from Transifex

Change-Id: Iafc49bb95a4eb8cf5a0afebfb8c4ab5de68ff46f

11 years agoMerge "Imported Translations from Transifex"
OpenStack Jenkins [Sun, 31 Mar 2013 19:30:53 +0000 (19:30 +0000)]
Merge "Imported Translations from Transifex"

11 years agoMerge "Pass metadata port to metadata proxy"
Jenkins [Sun, 31 Mar 2013 11:53:11 +0000 (11:53 +0000)]
Merge "Pass metadata port to metadata proxy"

11 years agoImported Translations from Transifex
OpenStack Jenkins [Sun, 31 Mar 2013 00:03:58 +0000 (00:03 +0000)]
Imported Translations from Transifex

Change-Id: I2a97391674edce23e5c98dceae8c7cc6a2bbe5d0

11 years agoPass metadata port to metadata proxy
mouad benchchaoui [Sat, 30 Mar 2013 10:56:44 +0000 (11:56 +0100)]
Pass metadata port to metadata proxy

Make the l3 agent pass the port used by the metadata service to the router namespace proxy when
creating it and add also new tests for this.

Fixes LP# 1160955
Change-Id: Iec8a5238345b26e70b0aa1dc96a896e26af34722

11 years agoEnable authZ checks for member actions
Salvatore Orlando [Tue, 19 Mar 2013 18:54:58 +0000 (19:54 +0100)]
Enable authZ checks for member actions

Blueprint make-authz-orthogonal

This implements work item #1 of the blueprint.
This patch enables authZ checks for 'member actions' in the base
controller and removes explicit checks from l3_db.
This patch also addresses a small glitch in the policy engine which
was assuming the request always had a body.

Change-Id: I7e0f386eedcfff24ea1fee7294bbadd6c5ec781c

11 years agoImported Translations from Transifex
OpenStack Jenkins [Sat, 30 Mar 2013 00:06:12 +0000 (00:06 +0000)]
Imported Translations from Transifex

Change-Id: I483efcd9ae8a7e6950a036693462a20216360567

11 years agoFix for Cisco plugin physical device config error
Arvind Somya [Fri, 29 Mar 2013 17:06:17 +0000 (13:06 -0400)]
Fix for Cisco plugin physical device config error

This patch fixes a bug with the Cisco plugin where subsequent vlan id's
would overwrite the existing trunking config on a switch interface.

Change-Id: I5e97c00062f687838e60e5dc9470f4a62289676b
Fixes: Bug #1161946
11 years agoPrevents a portinfo deletion in vm migration with NEC plugin.
Ryota MIBU [Thu, 28 Mar 2013 06:38:13 +0000 (15:38 +0900)]
Prevents a portinfo deletion in vm migration with NEC plugin.

Fixes: Bug 1160193
This patch prevents a portinfo deletion at the end of the migration sequence
by ignoring port_removed message from the source host.

Change-Id: I96932587b9d660aa01f8fcae0b0426c849d6c483

11 years agoMerge "Imported Translations from Transifex"
OpenStack Jenkins [Fri, 29 Mar 2013 06:14:20 +0000 (06:14 +0000)]
Merge "Imported Translations from Transifex"

11 years agoMerge "Add lbaas_agent files to setup.py"
Jenkins [Fri, 29 Mar 2013 06:11:54 +0000 (06:11 +0000)]
Merge "Add lbaas_agent files to setup.py"

11 years agoImported Translations from Transifex
OpenStack Jenkins [Fri, 29 Mar 2013 00:06:20 +0000 (00:06 +0000)]
Imported Translations from Transifex

Change-Id: I6cab2a9e472620a01a5e1ca13f9a88abcb316a52

11 years agoAdd lbaas_agent files to setup.py
Terry Wilson [Thu, 28 Mar 2013 19:33:00 +0000 (14:33 -0500)]
Add lbaas_agent files to setup.py

Fixes bug 1161572
Change-Id: I2399c6621cabe9ef89a0a1805b7c3a6b1d89ed5b

11 years agoMerge "Add VIRTUAL_ENV key to enviroment passed to patch_tox_env"
Jenkins [Thu, 28 Mar 2013 23:47:59 +0000 (23:47 +0000)]
Merge "Add VIRTUAL_ENV key to enviroment passed to patch_tox_env"

11 years agoAdd VIRTUAL_ENV key to enviroment passed to patch_tox_env
Salvatore Orlando [Thu, 28 Mar 2013 14:17:21 +0000 (15:17 +0100)]
Add VIRTUAL_ENV key to enviroment passed to patch_tox_env

Bug 1161413

Change-Id: I873d90c148c2adf15319faeb6290743eda2d52aa

11 years agoSupport for SSL in wsgi.Server
Davanum Srinivas [Fri, 22 Mar 2013 14:31:35 +0000 (10:31 -0400)]
Support for SSL in wsgi.Server

SSL are entirely optional. Support for SSL as well using code from glance. We
have some new options for configuring the SSL support. There are tests for
accessing a sample app w/o ipv6 or ssl, one with just ssl and one with
ipv6 and ssl

Fixes LP# 1101342

DocImpact

Change-Id: I824acef4130d27828dcf199736b3ca668d6202d7

11 years agoMerge "Enable exception format checking when testing."
Jenkins [Thu, 28 Mar 2013 08:24:46 +0000 (08:24 +0000)]
Merge "Enable exception format checking when testing."

11 years agoMerge "Change the quantum-ns-metadata-proxy log file name."
Jenkins [Thu, 28 Mar 2013 07:28:42 +0000 (07:28 +0000)]
Merge "Change the quantum-ns-metadata-proxy log file name."

11 years agoChange the quantum-ns-metadata-proxy log file name.
Brian Haley [Wed, 27 Mar 2013 21:44:34 +0000 (17:44 -0400)]
Change the quantum-ns-metadata-proxy log file name.

Add a '-' before the router_id/network_id for easier parsing
when starting the ns metadata proxy.

Fixes bug 1161124

Change-Id: I408111d1343ecac297f6277e8067d3fa34bb8cb7

11 years agoImported Translations from Transifex
OpenStack Jenkins [Thu, 28 Mar 2013 00:06:24 +0000 (00:06 +0000)]
Imported Translations from Transifex

Change-Id: I54fa9f8450b48ae19090b3241f081b499439548e

11 years agoMerge "Imported Translations from Transifex"
OpenStack Jenkins [Wed, 27 Mar 2013 17:52:16 +0000 (17:52 +0000)]
Merge "Imported Translations from Transifex"

11 years agoMerge "Mark 'sql_connection' config option as secret"
Jenkins [Wed, 27 Mar 2013 17:52:13 +0000 (17:52 +0000)]
Merge "Mark 'sql_connection' config option as secret"

11 years agoMerge "Create a fake netconf client for Cisco nexus unit tests"
Jenkins [Wed, 27 Mar 2013 17:46:27 +0000 (17:46 +0000)]
Merge "Create a fake netconf client for Cisco nexus unit tests"

11 years agoMark 'sql_connection' config option as secret
Roman Podolyaka [Wed, 27 Mar 2013 05:59:39 +0000 (07:59 +0200)]
Mark 'sql_connection' config option as secret

Fixes bug 1160680.

Change-Id: I42b16d006f162cb41090fa34677d6ad054b6a55a

11 years agoImported Translations from Transifex
OpenStack Jenkins [Wed, 27 Mar 2013 00:06:31 +0000 (00:06 +0000)]
Imported Translations from Transifex

Change-Id: I07f9138424a97ee6ca8a6f758e567ace2df0e65e

11 years agoMerge "Fix kwargs for NECDBException."
Jenkins [Tue, 26 Mar 2013 19:22:58 +0000 (19:22 +0000)]
Merge "Fix kwargs for NECDBException."

11 years agoMerge "Fix kwargs for FloatingIPPortAlreadyAssociated."
Jenkins [Tue, 26 Mar 2013 19:20:59 +0000 (19:20 +0000)]
Merge "Fix kwargs for FloatingIPPortAlreadyAssociated."

11 years agoCreate a fake netconf client for Cisco nexus unit tests
Dane LeBlanc [Mon, 25 Mar 2013 22:43:52 +0000 (18:43 -0400)]
Create a fake netconf client for Cisco nexus unit tests

Fixes bug 1159560

Change-Id: Idb0578a16d3944052a0302415c6c0d96e87cc485

11 years agoMerge "Add metadata support for nvp plugin without namespaces"
Jenkins [Tue, 26 Mar 2013 10:34:17 +0000 (10:34 +0000)]
Merge "Add metadata support for nvp plugin without namespaces"

11 years agoAdd metadata support for nvp plugin without namespaces
Aaron Rosen [Fri, 15 Mar 2013 21:45:42 +0000 (14:45 -0700)]
Add metadata support for nvp plugin without namespaces

If using a host that does not support namespaces the nvp plugin did not have
a way to leverage metadata unless using enable_isolated_metadata which
requires a subnet to not have a gateway. This patch changes the metadata
configuration for the NVP plugin by adding a flag metadata which can be
set to access_network (which was previously enable_metadata_access_network)
or dhcp_host_route. When set to dhcp_host_route when the dhcp agent creates
it's port a host_route is added towards the dhcp server's ip for the
destination 169.254.169.254/32 only if the subnet has as gatway_ip.
In order for a host to leverage metadata via dhcp_route_route it requires
the host's dhcp client to support host routes (code 121).

Fixes bug 1155786

Change-Id: I2ff52adc3dfebcdd6d9c05d5dc79aa65ae100c74

11 years agoImported Translations from Transifex
OpenStack Jenkins [Tue, 26 Mar 2013 00:06:34 +0000 (00:06 +0000)]
Imported Translations from Transifex

Change-Id: Iffc293cf3e061eb6edf9d32fc792bb47ddb9ac22

11 years agoMerge "Ensure DB pooling code works with newer eventlet versions"
Jenkins [Mon, 25 Mar 2013 20:30:58 +0000 (20:30 +0000)]
Merge "Ensure DB pooling code works with newer eventlet versions"

11 years agoEnable exception format checking when testing.
Dan Prince [Mon, 25 Mar 2013 17:47:50 +0000 (13:47 -0400)]
Enable exception format checking when testing.

Updates our new exception base class to enable exception
format checking. This should help enforce that we pass
the correct kwargs to exceptions when testing.

Change-Id: I9ac62e289c0de3931861473912bb6c98b57d4126

11 years agoFix kwargs for NECDBException.
Dan Prince [Mon, 25 Mar 2013 17:46:15 +0000 (13:46 -0400)]
Fix kwargs for NECDBException.

Updates the NEC plugin to use the correct kwargs when raising
NECDBException.

Fixes LP Bug #1159925.

Change-Id: I1e96d4ec65c1bc98d90d2eb9867fe39bbd505cdc

11 years agoFix kwargs for FloatingIPPortAlreadyAssociated.
Dan Prince [Mon, 25 Mar 2013 17:43:14 +0000 (13:43 -0400)]
Fix kwargs for FloatingIPPortAlreadyAssociated.

Updates the NVP plugin to use the correct kwargs when raising
l3.FloatingIPPortAlreadyAssociated.

Fixes LP Bug #1159922.

Change-Id: If89feea5e40976ccb4286f96f5348c54f84950ce

11 years agoAdjust exception message in l3 agent
Salvatore Orlando [Mon, 25 Mar 2013 15:51:24 +0000 (16:51 +0100)]
Adjust exception message in l3 agent

Bug 1159856

Change-Id: I8d30fd50d46677fc112fe4d8406b849cbb8ef225

11 years agoMerge "Update latest OSLO"
Jenkins [Mon, 25 Mar 2013 15:44:17 +0000 (15:44 +0000)]
Merge "Update latest OSLO"

11 years agoFixes report state failed with qpid rpc backend
He Jie Xu [Mon, 25 Mar 2013 08:18:21 +0000 (16:18 +0800)]
Fixes report state failed with qpid rpc backend

Fixes bug 1159616

Change-Id: Ie63dd41169fdb2f7a1814aed38ab126b69b46fe9

11 years agoMerge "netns: ip netns exec <name> kill doesn't make sense"
Jenkins [Mon, 25 Mar 2013 07:54:29 +0000 (07:54 +0000)]
Merge "netns: ip netns exec <name> kill doesn't make sense"

11 years agonetns: ip netns exec <name> kill doesn't make sense
Isaku Yamahata [Mon, 18 Mar 2013 21:56:15 +0000 (06:56 +0900)]
netns: ip netns exec <name> kill doesn't make sense

It seems confusing netns with pidns.
Although 'ip netns exec' doesn't make sense,
'ip netns exec <netns> kill <pid>' itself success as expected.
But as side effects, dentry of /proc/<pid>/ns/net becomes young,
which increases the possibility to fail to delete netns. That's not good.

Fixes: Bug #1158589
Change-Id: I9aa717ccb86d8bf00bb1e707d39bfb65d043532b
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
11 years agoUpdate latest OSLO
Gary Kotton [Mon, 25 Mar 2013 05:59:32 +0000 (05:59 +0000)]
Update latest OSLO

Includes fix for bug 1158179

Change-Id: Ifd8cde2903dcd013903e95a30c2ed422e89bcd0f

11 years agoMerge "Raise VipExists exception in case Vip is created or updated for a pool that...
Jenkins [Mon, 25 Mar 2013 05:04:18 +0000 (05:04 +0000)]
Merge "Raise VipExists exception in case Vip is created or updated for a pool that already has a Vip"

11 years agoMerge "Imported Translations from Transifex"
OpenStack Jenkins [Mon, 25 Mar 2013 03:45:15 +0000 (03:45 +0000)]
Merge "Imported Translations from Transifex"

11 years agoRevert back to 'call' for agent reports
Gary Kotton [Fri, 22 Mar 2013 15:40:38 +0000 (15:40 +0000)]
Revert back to 'call' for agent reports

Fixes bug 1159581

The logic of the agents is based on RPC call()
since the agent needs to catch an exception over RPC.

Change-Id: I6d408216ebdfd130bab2555e61febd02b521985d

11 years agoImported Translations from Transifex
OpenStack Jenkins [Mon, 25 Mar 2013 00:06:02 +0000 (00:06 +0000)]
Imported Translations from Transifex

Change-Id: Ifd232d5588da1882e4d0a6e946e8d55738153bff

11 years agoMerge "Imported Translations from Transifex"
OpenStack Jenkins [Sun, 24 Mar 2013 22:48:26 +0000 (22:48 +0000)]
Merge "Imported Translations from Transifex"