]> review.fuel-infra Code Review - openstack-build/cinder-build.git/log
openstack-build/cinder-build.git
10 years agoMerge "Keep volume available if retype fails due to quota"
Jenkins [Wed, 23 Apr 2014 16:42:21 +0000 (16:42 +0000)]
Merge "Keep volume available if retype fails due to quota"

10 years agoMerge "Remove old driver mappings from Havana"
Jenkins [Wed, 23 Apr 2014 15:45:31 +0000 (15:45 +0000)]
Merge "Remove old driver mappings from Havana"

10 years agoMerge "Fallback to None on missing Glance image attrs"
Jenkins [Wed, 23 Apr 2014 15:41:57 +0000 (15:41 +0000)]
Merge "Fallback to None on missing Glance image attrs"

10 years agoMerge "Fix bad indentation in tests"
Jenkins [Wed, 23 Apr 2014 15:34:32 +0000 (15:34 +0000)]
Merge "Fix bad indentation in tests"

10 years agoKeep volume available if retype fails due to quota
Mike Perez [Tue, 22 Apr 2014 23:27:42 +0000 (16:27 -0700)]
Keep volume available if retype fails due to quota

If we're over quota for a volume type that we're retyping a volume to,
keep the volume available.

Closes-Bug: #1308819
Change-Id: I7e66e95bf12b7e5a6df04eeb5a501badb5f2941f

10 years agoMerge "Update tests to use CONF.set_override"
Jenkins [Tue, 22 Apr 2014 19:36:04 +0000 (19:36 +0000)]
Merge "Update tests to use CONF.set_override"

10 years agoMerge "Remove unused 3PAR driver method"
Jenkins [Tue, 22 Apr 2014 07:22:58 +0000 (07:22 +0000)]
Merge "Remove unused 3PAR driver method"

10 years agoMerge "Remove unused reservation methods from db.api"
Jenkins [Tue, 22 Apr 2014 03:09:49 +0000 (03:09 +0000)]
Merge "Remove unused reservation methods from db.api"

10 years agoRemove unused 3PAR driver method
Kurt Martin [Mon, 21 Apr 2014 21:59:02 +0000 (14:59 -0700)]
Remove unused 3PAR driver method

Remove the "parse_create_host_error" method as it is no longer
used in the 3PAR drivers. It can safely be removed from the
3PAR common code and the unit test were no longer using the method.

Change-Id: I81898e075107b55002c2d07f5e06db76a16c3e28
Closes-bug: 1310807

10 years agoFix bad indentation in tests
Eric Harney [Mon, 21 Apr 2014 18:41:10 +0000 (14:41 -0400)]
Fix bad indentation in tests

Remove a number of bad indentation errors flagged
by pylint.

Change-Id: I0a048d96aba09b2f14360ceffb1fe167fb613674

10 years agoMerge "Add exception catch if Storwize/SVC driver failed when retyping"
Jenkins [Fri, 18 Apr 2014 19:53:45 +0000 (19:53 +0000)]
Merge "Add exception catch if Storwize/SVC driver failed when retyping"

10 years agoMerge "Fixes HostTestCase failures due to slow test run"
Jenkins [Fri, 18 Apr 2014 18:50:30 +0000 (18:50 +0000)]
Merge "Fixes HostTestCase failures due to slow test run"

10 years agoMerge "Correct metadata ordering issue in tests"
Jenkins [Fri, 18 Apr 2014 08:29:05 +0000 (08:29 +0000)]
Merge "Correct metadata ordering issue in tests"

10 years agoMerge "Re-raise exceptions in upload-to-image"
Jenkins [Fri, 18 Apr 2014 06:05:06 +0000 (06:05 +0000)]
Merge "Re-raise exceptions in upload-to-image"

10 years agoFallback to None on missing Glance image attrs
Mike Perez [Fri, 18 Apr 2014 01:46:36 +0000 (18:46 -0700)]
Fallback to None on missing Glance image attrs

It's possible for glance images to be missing attributes like name and
checksum. We'll just set those to None by default to avoid missing key
exceptions being raised.

Closes-Bug: #1308058
Change-Id: I85c42f8351763da201021a22f5ff0ebd62c6b2db

10 years agoRemove old driver mappings from Havana
Mike Perez [Thu, 17 Apr 2014 16:38:22 +0000 (09:38 -0700)]
Remove old driver mappings from Havana

These were deprecated in Havana and don't need to be in Juno.

Change-Id: I5ff537cc08f38f16f3d36a8a3714c025266f67fb

10 years agoMerge "Create volume fail when image id is """
Jenkins [Thu, 17 Apr 2014 15:54:49 +0000 (15:54 +0000)]
Merge "Create volume fail when image id is """

10 years agoAdjust sample config for keystoneclient 0.8.0 release
Dirk Mueller [Thu, 17 Apr 2014 13:33:07 +0000 (15:33 +0200)]
Adjust sample config for keystoneclient 0.8.0 release

Helps fixing the gate again.

Change-Id: Ic962613fd7ee3e978890c25f911f509e9533ef8a

10 years agoRemove unused reservation methods from db.api
liyingjun [Fri, 22 Nov 2013 04:15:49 +0000 (12:15 +0800)]
Remove unused reservation methods from db.api

There are several unused reservation methods are not called directly,
so it could be removed from the db API.

closes-bug: #1255925

Change-Id: I8dffa1d4222da162e55ddd6cfce656b4620f3fad

10 years agoRe-raise exceptions in upload-to-image
Jon Bernard [Fri, 11 Apr 2014 14:44:55 +0000 (10:44 -0400)]
Re-raise exceptions in upload-to-image

This patch catches any exceptions returned from Glance during an
upload-to-image operation and re-raises them so that the user can see
the failure message and make the appropriate adjustments.  More
specifically, this addresses an invalid container format.

For example, the following command:

    $ cinder upload-to-image --container-format foobar ...

Goes from:

    ERROR: The server could not comply with the request since it is
           either malformed or otherwise incorrect. (HTTP 400)
           (Request-ID: req-f19bad2f-c39d-40a2-a3cc-6db9b9fe64cd)

To:

    ERROR: 400 Bad Request
    Invalid container format 'foobar' for image.
        (HTTP 400) (HTTP 400)
        (Request-ID: req-47cb2772-78c4-48b7-87ce-fb124ecfa989)

Closes-Bug: #1308689
Change-Id: If18851e0b9f5c242f84b1eab928b42d809335d80

10 years agoUpdate Cinder dev doc
Veronica Musso [Wed, 16 Apr 2014 11:12:48 +0000 (08:12 -0300)]
Update Cinder dev doc

Removing mention of adding your name and email to Author files in
Cinder dev doc.

Change-Id: I5b723dd9ff1153096852a4c1c6a7b59bf0d04d3c
Closes-Bug: #1309581

10 years agoCreate volume fail when image id is ""
ling-yun [Fri, 4 Apr 2014 13:58:14 +0000 (21:58 +0800)]
Create volume fail when image id is ""

When call create volume api with image id "", it will create an empty
volume.
But when create volume with snapshot id "" or srv volume "", it will
return an 404 error.
So it should create volume fail when call create volume api with image id
"".

Change-Id: If2c7b061753bbbd172a09d35b343e73e90a1b7b4
Closes-Bug: #1302609

10 years agoMerge "Use cached db object in volume_mig_status ext"
Jenkins [Wed, 16 Apr 2014 05:20:27 +0000 (05:20 +0000)]
Merge "Use cached db object in volume_mig_status ext"

10 years agoMerge "Disable oslo.messaging debug logs"
Jenkins [Wed, 16 Apr 2014 01:33:37 +0000 (01:33 +0000)]
Merge "Disable oslo.messaging debug logs"

10 years agoMerge "Fixes HP LeftHand driver with Paramiko 1.13.0"
Jenkins [Wed, 16 Apr 2014 01:27:26 +0000 (01:27 +0000)]
Merge "Fixes HP LeftHand driver with Paramiko 1.13.0"

10 years agoMerge "Inform about instance_uuid in volume usage notification"
Jenkins [Wed, 16 Apr 2014 01:07:44 +0000 (01:07 +0000)]
Merge "Inform about instance_uuid in volume usage notification"

10 years agoUse cached db object in volume_mig_status ext
Vishvananda Ishaya [Tue, 15 Apr 2014 21:29:38 +0000 (14:29 -0700)]
Use cached db object in volume_mig_status ext

There is no need to rerequest the volume object from the db in
the extension because we already have a cached copy in the request.
This can potentially save hundreds of db queries in list.

Change-Id: I46da8c7b6c2af2435d246ebd8e95d4712065f1e7
Resolves-bug: 1308255

10 years agoAdd exception catch if Storwize/SVC driver failed when
Li Min Liu [Fri, 11 Apr 2014 02:50:24 +0000 (10:50 +0800)]
Add exception catch if Storwize/SVC driver failed when
retyping

If adding a copy for a volume of Storwize/SVC which is under
migration, Storwize/SVC command will fail because the
number of the copies of the volume exceed the limit which
is 2.

Modifying the volume type when adding a copy for the volume,
Storwize/SVC driver will also fail, should add exception catch.

Also add exception catch when getting the volume from the database.
This change is necessary to enable resolving bug 1305550
(https://bugs.launchpad.net/cinder/+bug/1305550 - Failed retype with
driver raised exception should set volume status to "error" ).

Change-Id: I1cf4b6606b5228c8adcb2bde21f345fa979bc13e
Closes-Bug: #1298201

10 years agoEnable flake8 H303,H304 checking
Alexander Bochkarev [Mon, 24 Feb 2014 11:10:44 +0000 (15:10 +0400)]
Enable flake8 H303,H304 checking

We had two types of wildcard imports in the code. Unneeded ones
in test files that are just removed, and some that we actually
want which are kept using the '#noqa' comment to tell flake8
to skip specific checks (such as H303) for that line.

Change-Id: I7d194a7bbcccdba419a2a49a919e17c047633cf0

10 years agoMerge "Switch over to FixedIntervalLoopingCall"
Jenkins [Mon, 14 Apr 2014 21:45:16 +0000 (21:45 +0000)]
Merge "Switch over to FixedIntervalLoopingCall"

10 years agoMerge "Force detach should only be an admin api"
Jenkins [Mon, 14 Apr 2014 18:21:57 +0000 (18:21 +0000)]
Merge "Force detach should only be an admin api"

10 years agoMerge "Storwize/SVC driver crashes when check volume copy status"
Jenkins [Mon, 14 Apr 2014 18:09:14 +0000 (18:09 +0000)]
Merge "Storwize/SVC driver crashes when check volume copy status"

10 years agoStorwize/SVC driver crashes when check volume copy status
Li Min Liu [Tue, 8 Apr 2014 02:18:56 +0000 (10:18 +0800)]
Storwize/SVC driver crashes when check volume copy status

Storwize/SVC driver does not clear up property of _vdiskcopyops
when deleting a volume. So if a volume which under async copy is
deleted before sync completed, the driver will crash.

When delete a volume, add a check for _vdiskcopyops, if volume
is in the dict, remove it.

Change-Id: I4905404b72a7ac8f90bd92fa4345ba771a78418b
Closes-Bug: #1304115

10 years agoSwitch over to FixedIntervalLoopingCall
Dirk Mueller [Mon, 14 Apr 2014 15:12:23 +0000 (17:12 +0200)]
Switch over to FixedIntervalLoopingCall

Change-Id: Iebe5269ea01acdd4ba011742831ca5e569f66b28
Closes-Bug: #1307560

10 years agoCorrect metadata ordering issue in tests
Juan Manuel Olle [Fri, 21 Mar 2014 19:46:03 +0000 (16:46 -0300)]
Correct metadata ordering issue in tests

Some test including test_volume_get_all_filters
fails randomly because metadata is in a dict and
the items order is undefined.
The test comparison was changed to avoid unexpected
test results.

Change-Id: Ibb24d21cd05aa1eefb45b61c63de067b34fb1013
Closes-Bug: #1293792

10 years agoMerge "Fixes cinder error state volume delete on Windows"
Jenkins [Mon, 14 Apr 2014 05:21:09 +0000 (05:21 +0000)]
Merge "Fixes cinder error state volume delete on Windows"

10 years agoMerge "driver.create/remove_export() require elevated context"
Jenkins [Fri, 11 Apr 2014 04:22:12 +0000 (04:22 +0000)]
Merge "driver.create/remove_export() require elevated context"

10 years agoMerge "GlusterFS: Delete active snapshot file on volume delete."
Jenkins [Fri, 11 Apr 2014 01:56:23 +0000 (01:56 +0000)]
Merge "GlusterFS: Delete active snapshot file on volume delete."

10 years agoMerge "Check for silent failure of tgtadm remove"
Jenkins [Fri, 11 Apr 2014 00:23:04 +0000 (00:23 +0000)]
Merge "Check for silent failure of tgtadm remove"

10 years agodriver.create/remove_export() require elevated context
Eric Harney [Wed, 9 Apr 2014 17:05:54 +0000 (13:05 -0400)]
driver.create/remove_export() require elevated context

The volume manager should call driver.create_export()
and driver.remove_export() with an elevated context.

This is already done for remove_export() in some cases
but not in initialize_connection error paths, or for
terminate_connection.

This will at a minimum cause issues with the LVM LIO
driver as its create/remove_export methods uses database
queries requiring admin access (volume_get_iscsi_target_num,
iscsi_target_count_by_host).

Partial-Bug: #1300148
Closes-Bug: #1305197

Change-Id: I5c1091cf9720ebccefc328b64fbf2982b3aac397

10 years agoMerge "Updated from global requirements"
OpenStack Jenkins [Thu, 10 Apr 2014 15:46:15 +0000 (15:46 +0000)]
Merge "Updated from global requirements"

10 years agoInform about instance_uuid in volume usage notification
Pavel Kirpichyov [Thu, 10 Apr 2014 07:20:29 +0000 (10:20 +0300)]
Inform about instance_uuid in volume usage notification

Change-Id: I6f43a2ef2401d6369ad0258f61fe2d3a8c168734

10 years agoMerge "GET details REST API next link missing 'details'"
Jenkins [Thu, 10 Apr 2014 07:17:58 +0000 (07:17 +0000)]
Merge "GET details REST API next link missing 'details'"

10 years agoCheck for silent failure of tgtadm remove
John Griffith [Thu, 10 Apr 2014 00:10:08 +0000 (00:10 +0000)]
Check for silent failure of tgtadm remove

In order to work around a failure to remove targets that
had a reconnect the force flag was added to the tgt delete cmd.
    (https://bugs.launchpad.net/cinder/+bug/1159948)

It turns out there's a bug in tgt where some versions will
sometimes silently fail when using the force flag.
    (https://bugs.launchpad.net/ubuntu/+source/tgt/+bug/1305343)

The problem is that in the gates since we merged the force change
there's a very high number of cases where lvremove fails because
the device is still active.  It appears that this is a result of
the silent force failures in target.

This patch adds a simple check after the force target removal,
if it detects the target is still present it reverts back to the old
non-force method to catch the cases that don't actually need the
force option.

This is a work-around until the version of target in the distros
is updated and can be used reliably, but closes the gate issue
bug that was reported.

Change-Id: I9150669040815e4831bd570964d12676b83ecbc9
Close-Bug: #1304122

10 years agoMerge "Log initialize_connection error before remove_export"
Jenkins [Wed, 9 Apr 2014 17:54:56 +0000 (17:54 +0000)]
Merge "Log initialize_connection error before remove_export"

10 years agoGlusterFS: Delete active snapshot file on volume delete.
Thang Pham [Tue, 8 Apr 2014 20:45:34 +0000 (16:45 -0400)]
GlusterFS: Delete active snapshot file on volume delete.

If a snapshot is taken of a volume that is attached to an active
instance, the volume file used by the instance will be switched to
the new snapshot file that is created.  When you delete the
snapshot, the base volume file will be merged with the snapshot
file and the base volume is deleted.  Upon a deleting the active
volume, the active snapshot file is not deleted because it does not
have the expected name that cinder is looking for, i.e.
volume-<uuid>.  Instead, the snapshot file has the name
volume-<uuid>.<snapshot-uuid>.  This patch looks at the volume info
file to find any active snapshot file and properly delete it when
the volume is deleted.

Change-Id: Ib0af4401d839ec3bd1eb3a81e1671811e0d4a288
Closes-Bug: #1300303

10 years agoFixes HP LeftHand driver with Paramiko 1.13.0
Jim Branen [Fri, 4 Apr 2014 20:36:42 +0000 (13:36 -0700)]
Fixes HP LeftHand driver with Paramiko 1.13.0

With Paramiko 1.13.0, the method exec_command now returns Unicode.
This causes a problem when the driver tries to build the XML returned
from the LeftHand array. The XML header returned from the array defines
the encoding as encoding=UTF-8. Therefore, we must now ensure the
encoding passed to the parser is utf-8.

Change-Id: I7b504626e2d9a0ee2b62820b11f56eb136e31987
closes-bug: #1298608

10 years agoFixes cinder error state volume delete on Windows
Lucian Petrut [Tue, 8 Apr 2014 16:35:10 +0000 (19:35 +0300)]
Fixes cinder error state volume delete on Windows

If the volume creation fails and the iSCSI disk is not created,
trying to delete the error state volume will fail on Windows.

Deleting the iSCSI disk must be skipped when it does not exist.

Change-Id: I2cd615e71fe457c241bea207c4bd8904c1ffd9cb
Closes-Bug: #1304516

10 years agoLog initialize_connection error before remove_export
Eric Harney [Tue, 8 Apr 2014 17:55:25 +0000 (13:55 -0400)]
Log initialize_connection error before remove_export

The way this code is currently structured, if
self.driver.remove_export() raises an exception, you see the
error message logged for that but the original exception
from initialize_connection() never gets logged.

Change-Id: I454c73e8fdc88e5a9542369a5bca33f29617f013

10 years agoForce detach should only be an admin api
ling-yun [Tue, 8 Apr 2014 05:03:14 +0000 (13:03 +0800)]
Force detach should only be an admin api

Since force delete volume apis are only admin apis, force detach volume api
should also be an admin only api.  Currently, the force detach api,
which uses the default rule in policy.json, can be called by admins and owners.
This patch make force detach volume api an admin only api like force
delete volume.

Closes-Bug: #1303882
Change-Id: I12f927e816a5ba6809da9a27ac4ad150546286a1

10 years agoMerge "ceph backup driver: improve log messages"
Jenkins [Tue, 8 Apr 2014 10:01:59 +0000 (10:01 +0000)]
Merge "ceph backup driver: improve log messages"

10 years agoUpdated from global requirements
OpenStack Jenkins [Mon, 7 Apr 2014 21:19:32 +0000 (21:19 +0000)]
Updated from global requirements

Change-Id: I0cf3c003d307ace43b09c0377fac3dec42151f42

10 years agoMerge "Check that all po/pot files are valid"
Jenkins [Mon, 7 Apr 2014 15:11:55 +0000 (15:11 +0000)]
Merge "Check that all po/pot files are valid"

10 years agoMerge "Enable flake8 F841 checking"
Jenkins [Sun, 6 Apr 2014 20:04:30 +0000 (20:04 +0000)]
Merge "Enable flake8 F841 checking"

10 years agoMerge "Append nas_opts to IBMNAS_NFSDriver configuration"
Jenkins [Fri, 4 Apr 2014 19:34:56 +0000 (19:34 +0000)]
Merge "Append nas_opts to IBMNAS_NFSDriver configuration"

10 years agoMerge "Change iogrp property when retyping for Storwize/SVC"
Jenkins [Fri, 4 Apr 2014 07:16:52 +0000 (07:16 +0000)]
Merge "Change iogrp property when retyping for Storwize/SVC"

10 years agoMerge "Adds ionice command permutations to rootwrap filters"
Jenkins [Fri, 4 Apr 2014 06:31:35 +0000 (06:31 +0000)]
Merge "Adds ionice command permutations to rootwrap filters"

10 years agoMerge "_translate_from_glance() can cause an unnecessary HTTP request"
Jenkins [Fri, 4 Apr 2014 05:49:10 +0000 (05:49 +0000)]
Merge "_translate_from_glance() can cause an unnecessary HTTP request"

10 years agoChange iogrp property when retyping for Storwize/SVC
Li Min Liu [Tue, 1 Apr 2014 09:08:37 +0000 (17:08 +0800)]
Change iogrp property when retyping for Storwize/SVC

If need migration when retyping, Storwize/SVC driver will add a copy
of the volume first, and then start a task to check volume sync
progress which will run each 10 mins. At last delete the origin copy
when sync finished.

But iogrp property is not a parameter of addvdiskcopy, so the iogrp
of the copy volume is the same as the origin. If iogrp property is
diff between the old and new volume type, the property will not
change when retyped.

Change-Id: Ie4414bcf95fa6e61d7d618618f48837eef740da4
closed-bug: #1298247

10 years agoMerge "Allow deprecated volume update keys in v2"
Jenkins [Fri, 4 Apr 2014 03:47:33 +0000 (03:47 +0000)]
Merge "Allow deprecated volume update keys in v2"

10 years agoMerge "GlusterFS: Delete volume-<uuid>.info file when volume is deleted."
Jenkins [Fri, 4 Apr 2014 03:47:00 +0000 (03:47 +0000)]
Merge "GlusterFS: Delete volume-<uuid>.info file when volume is deleted."

10 years agoMerge "Fixes cinder volume delete on Windows"
Jenkins [Fri, 4 Apr 2014 03:42:51 +0000 (03:42 +0000)]
Merge "Fixes cinder volume delete on Windows"

10 years agoCheck that all po/pot files are valid
Andreas Jaeger [Mon, 31 Mar 2014 18:37:27 +0000 (20:37 +0200)]
Check that all po/pot files are valid

Perform minimal checks on po and pot files so that no broken files can
get imported.

Change-Id: I5dd0ca872fa25f8ef9557f039904090c4a672ff3
Co-Authored-By: Clark Boylan <clark.boylan@gmail.com>
Related-Bug: #1299349

10 years agoAllow deprecated volume update keys in v2
Mike Perez [Thu, 3 Apr 2014 00:52:11 +0000 (17:52 -0700)]
Allow deprecated volume update keys in v2

Keys like display_name and display_description were deprecated for other
actions in v2 like creating volumes, so for consistency they should work
with updating.

DocImpact
Closes-Bug: #1301172
Change-Id: I19bc7c85352578bb57fa9fdaf1817f78e0ee2f2a

10 years ago_translate_from_glance() can cause an unnecessary HTTP request
Chris Buccella [Thu, 3 Apr 2014 04:02:45 +0000 (04:02 +0000)]
_translate_from_glance() can cause an unnecessary HTTP request

After returning from a get() call to python-glanceclient, cinder runs a
translation function on the returned Image to get the data it wants. Part of
this process is checking for an expected set of attributes, one of which is
the deletion time ('deleted_at'). However, if the image has not been deleted,
deleted_at key will not exist. This forces another call to glance to occur for
the same image. A similar problem exists for the checksum attribute, which does
not exist before an image is active. The fix here is to only consider
deleted_at and checksum if they are expected to be present.

This change was made in nova as change I67b7dd16

Change-Id: Iedc16cb9316f9610fdb8ac03f448bc375a4e6bfa
Closes-Bug: #1275173

10 years agoAdds ionice command permutations to rootwrap filters
Bryan D. Payne [Mon, 31 Mar 2014 22:50:43 +0000 (15:50 -0700)]
Adds ionice command permutations to rootwrap filters

When setting volume_clear_ionice, the ionice command is prepended to a dd
command before executing it.  Previously, this would have failed because it
wasn't allowed through the default rootwrap filters.  This commit fixes this
problem.

Note that due to the way that the RegExpFilter works, we need three different
expressions to cover all cases.  This is because the various options result
in a different number of arguments.  And this filter will fail immediately
if the number of arguments is incorrect.

Change-Id: Ie29f7fa21b34982ed5394c2c8f38c3e066ef0112
Closes-Bug: #1300496

10 years agoAppend nas_opts to IBMNAS_NFSDriver configuration
Sasikanth [Thu, 27 Mar 2014 15:14:50 +0000 (20:44 +0530)]
Append nas_opts to IBMNAS_NFSDriver configuration

'nas_opts' were added in the NFS Driver (nfs.py), but were not appended
to the IBMNAS driver configuration, causing failure with the multi-backend
configuration of driver.

Adding the missing configuration.

Change-Id: I55727566d03573908750d01ae1345c4b6276f131
Closes-Bug: #1298279

10 years agoEnable flake8 F841 checking
Alexander Bochkarev [Thu, 20 Feb 2014 11:26:04 +0000 (15:26 +0400)]
Enable flake8 F841 checking

This check looks to see whether a local variable
is unused. This change fixed all violators of said check.

Change-Id: Iba4ab2b2a172d0c8b90ba29be33ebb129fce5e6b

10 years agoGET details REST API next link missing 'details'
Steven Kaufer [Mon, 31 Mar 2014 20:32:39 +0000 (20:32 +0000)]
GET details REST API next link missing 'details'

When executing a pagination query a "next" link is included in the
API reply when there are more items then the specified limit.

See pagination documentation for more information:
http://docs.openstack.org/api/openstack-compute/2/content/
Paginated_Collections-d1e664.html

The caller should be able to invoke the "next" link (without
having to re-format it) in order to get the next page of data.
The documentation states "Subsequent links will honor the
initial page size. Thus, a client may follow links to traverse
a paginated collection without having to input the marker parameter."

The problem is that the "next" link is always scoped to the non-
detailed query.

For example, if you execute "/v2/<tenant>/volumes/detail?limit=1",
the "next" link does not have the URL for a detailed query and is
formatted as "/v2/<tenant>/volumes?limit=1&marker=<marker>". In this
case the "next" link needs to be scoped to "/v2/<tenant>/volumes/detail".

The user could work around this issue my manually inserting '/details'
into the "next" link URL.

Test code is included to verify that the '/details' URL is correctly added
when the "next" link is included in a detailed pagination query. Also,
existing tests were changed to ensure that the correct controller function
(ie, 'index' vs. 'detail) are invoked for the appropriate query
(ie, non-detailed or detailed) -- 'index' was previously alwayed invoked
for detailed URL requests.

Change-Id: Ib00d6deb25255fac1db0f7bf4ecd3c8d30e1c39d
Closes-bug: 1299247

10 years agoGlusterFS: Delete volume-<uuid>.info file when volume is deleted.
Thang Pham [Mon, 31 Mar 2014 19:22:47 +0000 (15:22 -0400)]
GlusterFS: Delete volume-<uuid>.info file when volume is deleted.

glusterfs creates a file named volume-<uuid>.info to hold volume
data, mapping cinder snapshot UUIDs and filenames. When the
volume and its associated snapshots are both deleted, this file
remains. This patch deletes the volume-<uuid>.info (if one exists)
when the volume is deleted.

Change-Id: Iefc8bd4768b30a75c648c4689d935daeab3afe98
Closes-Bug: #1299182

10 years agoFix Jenkins translation jobs
Andreas Jaeger [Sat, 29 Mar 2014 05:38:52 +0000 (06:38 +0100)]
Fix Jenkins translation jobs

The jobs cinder-propose-translation-update and
cinder-upstream-translation-update do not update from
transifex since our po files contain duplicate entries where
obsolete entries duplicate normal entries.

Remove all obsolete entries to fix the jobs.

Change-Id: I6d41dbdcc41646fcbd1ee84ce48cb0c461cd454c
Closes-Bug: #1299349

10 years agoFixes HostTestCase failures due to slow test run
git-harry [Mon, 31 Mar 2014 12:59:56 +0000 (13:59 +0100)]
Fixes HostTestCase failures due to slow test run

Status check in _list_hosts() fails if tests take longer than the
service_down_time.

Stubbing utcnow() guarantees that status check passes for tests.

Change-Id: I188443730ce077a8117812f1089db36ece184e7a
Closes-Bug: 1292643

10 years agoMerge "Updated from global requirements"
OpenStack Jenkins [Sat, 29 Mar 2014 19:46:39 +0000 (19:46 +0000)]
Merge "Updated from global requirements"

10 years agoMerge "Imported Translations from Transifex"
OpenStack Jenkins [Sat, 29 Mar 2014 19:00:47 +0000 (19:00 +0000)]
Merge "Imported Translations from Transifex"

10 years agoMerge "Fixes cinder volume attach on Windows"
Jenkins [Sat, 29 Mar 2014 18:55:29 +0000 (18:55 +0000)]
Merge "Fixes cinder volume attach on Windows"

10 years agoImported Translations from Transifex
OpenStack Jenkins [Sat, 29 Mar 2014 06:12:44 +0000 (06:12 +0000)]
Imported Translations from Transifex

Change-Id: Ifd2be3ff6ec8e81aa34fc40bda6e1c7f4d441e4d

10 years agoUpdated from global requirements
OpenStack Jenkins [Sat, 29 Mar 2014 01:30:34 +0000 (01:30 +0000)]
Updated from global requirements

Change-Id: Ie0bccd435dd2d897365eb17238e72a0e6113ae60

10 years agoMerge "Import request_id middleware bug fix from oslo"
Jenkins [Fri, 28 Mar 2014 22:14:28 +0000 (22:14 +0000)]
Merge "Import request_id middleware bug fix from oslo"

10 years agoFixes cinder volume delete on Windows
Lucian Petrut [Fri, 28 Mar 2014 08:47:07 +0000 (10:47 +0200)]
Fixes cinder volume delete on Windows

Because of the fact that an iSCSI target is not created anymore
at volume creation time, not all volumes will have a corresponding
target. For this reason, when removing an iSCSI target we must
first check if the target actually exists.

Change-Id: I8e571397df6d9a2eeb05e883b7da8494d4bfa1ad
Closes-Bug: #1299124

10 years agoFixes cinder volume attach on Windows
Lucian Petrut [Fri, 28 Mar 2014 08:57:13 +0000 (10:57 +0200)]
Fixes cinder volume attach on Windows

The initiator name and the target name are inverted when passing
the arguments to the method which associates the iSCSI target to
an initiator. For this reason, this operation will fail.

Also, the connection to the iSCSI target cannot be initialized
properly as the method which gets portal information is missing
the return value.

Change-Id: I31034cd407d12d69a410f8c9e86a2e6821349dad
Closes-Bug: #1299131

10 years agoMerge "Open Juno development"
Jenkins [Thu, 27 Mar 2014 15:37:39 +0000 (15:37 +0000)]
Merge "Open Juno development"

10 years agoOpen Juno development
Thierry Carrez [Thu, 27 Mar 2014 10:14:52 +0000 (11:14 +0100)]
Open Juno development

Bump preversion to 2014.2 to formally open Juno development.
The Icehouse release branch (milestone-proposed) will be cut
from the last commit before this one.

Change-Id: I0296da7e564db58d164d8d867c45959d425dea37

10 years agoMerge "vmware: Use SessionIsActive to find stale session"
Jenkins [Thu, 27 Mar 2014 10:14:21 +0000 (10:14 +0000)]
Merge "vmware: Use SessionIsActive to find stale session"

10 years agoImported Translations from Transifex
OpenStack Jenkins [Thu, 27 Mar 2014 06:12:40 +0000 (06:12 +0000)]
Imported Translations from Transifex

Change-Id: Ibb7c3b8a65f1356a06bcec5d23f03598a9966315

10 years agoMerge "NetApp cmode nfs: Fix QOS extra spec"
Jenkins [Thu, 27 Mar 2014 04:50:37 +0000 (04:50 +0000)]
Merge "NetApp cmode nfs: Fix QOS extra spec"

10 years agoMerge "Fixes a problem in attach volume in EMC driver."
Jenkins [Thu, 27 Mar 2014 04:38:47 +0000 (04:38 +0000)]
Merge "Fixes a problem in attach volume in EMC driver."

10 years agoMerge "NetApp cmode iscsi: Fix QOS extra spec"
Jenkins [Thu, 27 Mar 2014 04:38:40 +0000 (04:38 +0000)]
Merge "NetApp cmode iscsi: Fix QOS extra spec"

10 years agoMerge "Changes to correct name of missing NetApp license."
Jenkins [Thu, 27 Mar 2014 04:38:32 +0000 (04:38 +0000)]
Merge "Changes to correct name of missing NetApp license."

10 years agoMerge "Pass the mirrorlog option as two arguments."
Jenkins [Thu, 27 Mar 2014 04:38:24 +0000 (04:38 +0000)]
Merge "Pass the mirrorlog option as two arguments."

10 years agoChanges to correct name of missing NetApp license.
Glenn M. Gobeli [Fri, 21 Mar 2014 14:05:07 +0000 (10:05 -0400)]
Changes to correct name of missing NetApp license.

Change to have the NetApp ZAPI error of "SIS clone not licensed"
refer to the correct NetApp license of "FlexClone not licensed".
This code path is encountered when the NetApp 7mode driver uses
the clone interface for snapshotting or cloning.

Change-Id: I3e4d07d38870928a324ad044e03938826b0d0a98
Closes-Bug: #1295349

10 years agoNetApp cmode nfs: Fix QOS extra spec
Alex Meade [Thu, 20 Mar 2014 19:44:44 +0000 (15:44 -0400)]
NetApp cmode nfs: Fix QOS extra spec

This patch fixes the incorrect behavior where the NetApp cmode
nfs driver will choose to create a volume on a flexVol that has
a QOS policy group that matches the specified QOS policy group
intended for the cinder volume. The correct behavior is to ignore
the QOS policy group of the flexVol and instead assign the QOS policy
group to the newly created cinder volume.

Change-Id: I45d905da2a9a07b3ae8c00a225ab3b7f7ceb12d8
Closes-Bug: #1288283

10 years agoNetApp cmode iscsi: Fix QOS extra spec
Alex Meade [Wed, 19 Mar 2014 18:03:15 +0000 (14:03 -0400)]
NetApp cmode iscsi: Fix QOS extra spec

This patch fixes the incorrect behavior where the NetApp cmode
iscsi driver will choose to create a volume on a flexVol that has
a QOS policy group that matches the specified QOS policy group
intended for the cinder volume. The correct behavior is to ignore
the QOS policy group of the flexVol and instead assign the QOS policy
group to the newly created cinder volume.

Change-Id: Ibeb8e3b965af8e79d0294c5cf97410da2b44d40c
Partial-Bug: #1288283

10 years agoFixes a problem in attach volume in EMC driver.
Xing Yang [Sat, 22 Mar 2014 19:05:42 +0000 (15:05 -0400)]
Fixes a problem in attach volume in EMC driver.

This patch fixes a problem in attach volume in EMC SMI-S driver.
The existing logic checks if a volume is already attached to any host,
but it doesn't check whether a volume is already attached to the specific
host that nova wants cinder to attach.  As a result, initialize_connection
could return success (thinking it is already attached), but nova will
fail to discover the LUN later and fail the attach.

This patch adds a check to see if a volume is already attached to a
specific host.  If not, it will do the attach.  The reason that the
volume being attached already could be due to a nova live-migration
use case.  Cinder doesn't support multiple attaches currently, but
allows a volume to be attached multiple times from nova during
live-migration.

Change-Id: I05a2f57cd8708d7fcbe902ec13665a9cfb44db07
Closes-Bug: #1295906

10 years agoUpdate config generator from OSLO
john-griffith [Wed, 26 Mar 2014 22:47:21 +0000 (16:47 -0600)]
Update config generator from OSLO

Cinders sample config is out of date with recent
updates needed for keystone, however we had an
old version of the oslo generator so there was
no way to pick these changes up locally by running
the generate tool.

This pulls the latest generator.py from oslo, and
we run the update script to get us back in sync.

Current head of oslo:
  commit 2eab986ef3c43f8d1e25065e3cbc1307860c25c7
  Merge: 2b08343 0dbcae1
  Author: Jenkins <jenkins@review.openstack.org>
  Date:   Wed Mar 26 14:47:07 2014 +0000

      Merge "Adds test condition in test_periodic"

Change-Id: Id43becfaa39d04153167e592a1233a5aef6016c9

10 years agoPass the mirrorlog option as two arguments.
Vishvananda Ishaya [Wed, 26 Mar 2014 19:09:28 +0000 (12:09 -0700)]
Pass the mirrorlog option as two arguments.

We don't use shell=True when we Popen, so we have to keep all
arguments as separate values.

Change-Id: Ic35fad36be72386d3496920e259c32fe16625046
Closes-bug: 1298017

10 years agoImport request_id middleware bug fix from oslo
Chris Buccella [Wed, 26 Mar 2014 19:48:16 +0000 (19:48 +0000)]
Import request_id middleware bug fix from oslo

There is a bug in request-id middleware that a subsequent API request
will overwrite a request-id of a previous request when multiple API
calls are processed in parallel in request_id middleware. The fix is
a drop-in replacement; cinder code does not need to be modified to
use the updated request_id middleware.

oslo change to fix the middleware:
d7bd9dc37ac3d6bc171cd2e290c772633ad20a32

Closes-Bug: #1289696
Change-Id: Ib211318c47681f841bcde04e490ccc2070bdf8de

10 years agoMerge "vmware: Remove pbm_default_policy config option"
Jenkins [Wed, 26 Mar 2014 11:23:30 +0000 (11:23 +0000)]
Merge "vmware: Remove pbm_default_policy config option"

10 years agoMerge "Netapp iscsi: allow snapshots with unspecified block range."
Jenkins [Wed, 26 Mar 2014 08:29:53 +0000 (08:29 +0000)]
Merge "Netapp iscsi: allow snapshots with unspecified block range."

10 years agoNetapp iscsi: allow snapshots with unspecified block range.
Jeff Applewhite [Mon, 24 Mar 2014 21:37:22 +0000 (17:37 -0400)]
Netapp iscsi: allow snapshots with unspecified block range.

Snapshots were failing to create in all cases in the NetApp iscsi
driver. The clone lun function was never issuing the zapi call
because the block count was set to 0.

Closes-Bug: 1296881

Change-Id: Ic2bf67b57a566632103a3fa2ff032555f42a3961

10 years agoSerialize the notification payload
john-griffith [Thu, 20 Mar 2014 03:53:41 +0000 (21:53 -0600)]
Serialize the notification payload

Notification payload in oslomessaging needs to be
serialized correctly, currently it's not.

Use json to encode the payload.
Closes-Bug: 1294949

Change-Id: Idb2c13981cc1c60ed02445a28220d1dab1529d2b