]> review.fuel-infra Code Review - openstack-build/cinder-build.git/log
openstack-build/cinder-build.git
9 years agoStandardize logging in volume.api.py
John Griffith [Fri, 17 Apr 2015 20:51:06 +0000 (20:51 +0000)]
Standardize logging in volume.api.py

We now have resource tag support in oslo logging,
and our logging is pretty inconsistent and down right
ugly in places.  Let's clean things up based on the
standard logging guidelines and use the fancy new
resource tag.

This patch starts with the volume.api file as that's
'easy', so we can enforce things going forward and start
working out other files in future patches.

To use set the following in cinder.conf:
logging_context_format_string = \
%(asctime)s.%(msecs)03d %(levelname)s %(name)s [%(request_id)s \
%(project_name)s] %(resource)s%(message)s

Change-Id: I78708ba8bc372c2ca051aa7d84386dc7125a9b5e

9 years agoMerge "Fix QoSSpecManageApiTest to work in parallel"
Jenkins [Sun, 19 Apr 2015 15:48:41 +0000 (15:48 +0000)]
Merge "Fix QoSSpecManageApiTest to work in parallel"

9 years agoMerge "Complete the doc/README.rst instructions to build docs"
Jenkins [Sun, 19 Apr 2015 15:43:08 +0000 (15:43 +0000)]
Merge "Complete the doc/README.rst instructions to build docs"

9 years agoMerge "VMware: Improve invalid container error message"
Jenkins [Sun, 19 Apr 2015 06:11:13 +0000 (06:11 +0000)]
Merge "VMware: Improve invalid container error message"

9 years agoMerge "VolMgr: reschedule only when filter_properties has retry"
Jenkins [Sun, 19 Apr 2015 06:09:02 +0000 (06:09 +0000)]
Merge "VolMgr: reschedule only when filter_properties has retry"

9 years agoMerge "Fix LUN misalignment issue with NetApp iSCSI drivers"
Jenkins [Fri, 17 Apr 2015 17:36:40 +0000 (17:36 +0000)]
Merge "Fix LUN misalignment issue with NetApp iSCSI drivers"

9 years agoVolMgr: reschedule only when filter_properties has retry
Zhiteng Huang [Fri, 17 Apr 2015 16:34:59 +0000 (00:34 +0800)]
VolMgr: reschedule only when filter_properties has retry

In the task flow for volume manager, create_volume tasks, volume gets
reschedule even when scheduler doesn't indicate so.  The problem is
the flow should not only check 'allow_reschedule' and 'request_specs',
but also (more importantly) filter_properties['retry'], which is
populated by scheduler if schedule_max_attempts is set to > 1.  This
checks was there before taskflow was introduced, but somehow the
migration missed the check for filter_properties['retry'].

This change adds back the check, so scheduler_max_attempts won't be
treated like scheduler_max_attempts = infinite.

Change-Id: Ia873617b22a2d86662ea8ea2fec5aae7f54a2058
Closes-bug: #1445561

9 years agoMerge "Mask passwords with iscsiadm commands"
Jenkins [Thu, 16 Apr 2015 22:30:28 +0000 (22:30 +0000)]
Merge "Mask passwords with iscsiadm commands"

9 years agoMerge "Fix always false condition in glance wrapper"
Jenkins [Thu, 16 Apr 2015 19:18:55 +0000 (19:18 +0000)]
Merge "Fix always false condition in glance wrapper"

9 years agoMerge "SMBFS: Lock on a per-volume basis"
Jenkins [Thu, 16 Apr 2015 18:52:11 +0000 (18:52 +0000)]
Merge "SMBFS: Lock on a per-volume basis"

9 years agoMerge "Add volume:update rule to policy.json"
Jenkins [Thu, 16 Apr 2015 18:15:43 +0000 (18:15 +0000)]
Merge "Add volume:update rule to policy.json"

9 years agoMerge "Add support for customized cluster name"
Jenkins [Thu, 16 Apr 2015 18:15:34 +0000 (18:15 +0000)]
Merge "Add support for customized cluster name"

9 years agoMask passwords with iscsiadm commands
Walter A. Boring IV [Thu, 16 Apr 2015 17:44:10 +0000 (10:44 -0700)]
Mask passwords with iscsiadm commands

This patch adds the fix that exists in the nova
libvirt volume code to use oslo_utils strutils
to mask passwords that might show up in debug log
messages.

Change-Id: I5c321d6b2627f186ff3dfe64ee7ad71f27a95cf0
Closes-Bug: 1445137

9 years agoAdd support for customized cluster name
Zhiteng Huang [Thu, 16 Apr 2015 14:47:31 +0000 (22:47 +0800)]
Add support for customized cluster name

Current RBD driver assumes ceph cluster name to be 'ceph', for
cluster has a different name, the driver won't be able to connect
to the cluster.  This change add a new config option
'rbd_cluster_name' to address this issue.

DocImpact

Change-Id: I02ae1a255fd613fce291cc7ddf90cfd9175255a8
Closes-bug: #1444855

9 years agoSMBFS: Lock on a per-volume basis
Alessandro Pilotti [Wed, 1 Apr 2015 17:57:14 +0000 (20:57 +0300)]
SMBFS: Lock on a per-volume basis

This allows operations that do not conflict with each
other (i.e. are on different volumes) to run concurrently.
The prior locking scheme was too coarse and essentially
made the driver single-threaded.

This patch moves the implementation of the GlusterFS driver locking
scheme to the RemoteFS base driver so that other similar volume
drivers can use it.

Closes-Bug: #1439352
Change-Id: I37be14e7525406e0ad568f6228c1303998c5235f

9 years agoWindows SMBFS: fix volume extend
Lucian Petrut [Fri, 27 Mar 2015 12:15:25 +0000 (14:15 +0200)]
Windows SMBFS: fix volume extend

The Windows SMBFS driver inherits the Linux SMBFS driver,
overriding Windows specific methods.

This commit Ic89cffc93940b7b119cfcde3362f304c9f2875df added the
volume name as an extra argument to the _do_extend_volume in order
to check if differencing images are pointing to backing files other
than the according volume disks.

Although this is not required on Windows, this method should accept
this extra argument in order to have the same signature as the
method it overrides. At the moment, this raises the following
exception:

TypeError: _do_extend_volume() takes exactly 3 arguments (4 given)

Change-Id: I868d7de4a2c68f3fc520ba476a5660a84f440bb1
Closes-Bug: #1437290

9 years agoComplete the doc/README.rst instructions to build docs
Fabien Boucher [Tue, 17 Mar 2015 15:17:02 +0000 (15:17 +0000)]
Complete the doc/README.rst instructions to build docs

Give instructions about how to build the docs using tox
and virtualenv.

Change-Id: I3d7cdbd848158307706d94ee8a35b3b35911900d

9 years agoMerge "Add CA cert option to backups swift driver"
Jenkins [Thu, 16 Apr 2015 06:07:48 +0000 (06:07 +0000)]
Merge "Add CA cert option to backups swift driver"

9 years agoMerge "Fix a wrong argument of create method"
Jenkins [Thu, 16 Apr 2015 05:54:03 +0000 (05:54 +0000)]
Merge "Fix a wrong argument of create method"

9 years agoMerge "Reworked Dell SC iSCSI target portal return"
Jenkins [Thu, 16 Apr 2015 02:03:09 +0000 (02:03 +0000)]
Merge "Reworked Dell SC iSCSI target portal return"

9 years agoAdd CA cert option to backups swift driver
Francis Moorehead [Fri, 23 Jan 2015 13:13:38 +0000 (13:13 +0000)]
Add CA cert option to backups swift driver

Add the option in volume backups swift driver
to specify a CA certificate file

DocImpact: Add the option in volume backups swift driver to
specify a CA certificate file

Closes-Bug: 1413945

Change-Id: Ibcfe220d35cbb5369679a1ff51fffd41f16c9909

9 years agoMerge "Add locking to PureISCSIDriver around creating Purity Host objects."
Jenkins [Wed, 15 Apr 2015 06:01:04 +0000 (06:01 +0000)]
Merge "Add locking to PureISCSIDriver around creating Purity Host objects."

9 years agoMerge "Get volume from db again before updating it's status"
Jenkins [Wed, 15 Apr 2015 05:21:30 +0000 (05:21 +0000)]
Merge "Get volume from db again before updating it's status"

9 years agoMerge "Remove the export creation during volume creation for migration"
Jenkins [Wed, 15 Apr 2015 05:21:10 +0000 (05:21 +0000)]
Merge "Remove the export creation during volume creation for migration"

9 years agoFix a wrong argument of create method
Daisuke Fujita [Wed, 15 Apr 2015 05:03:31 +0000 (14:03 +0900)]
Fix a wrong argument of create method

Change the argument 'QoSSpecs.create' to 'qos_specs.create'.

Change-Id: Iabebc5f1681be75fb06d836ea72b93de0a9d688e
Closes-Bug: #1443331

9 years agoMerge "Fix assertEqual in test_volume.py in correct order of params"
Jenkins [Wed, 15 Apr 2015 03:39:41 +0000 (03:39 +0000)]
Merge "Fix assertEqual in test_volume.py in correct order of params"

9 years agoAdd locking to PureISCSIDriver around creating Purity Host objects.
Patrick East [Wed, 15 Apr 2015 01:42:19 +0000 (18:42 -0700)]
Add locking to PureISCSIDriver around creating Purity Host objects.

This will prevent us from getting conflicting credentials for
connection methods which will result in iSCSI attach operations to fail.

Change-Id: Ia206e7b5ff330c8fccb49ed23a31b120a5c04eb3
Closes-Bug: 1444224

9 years agoMerge "Fixes snapshot creation failure in CloudByte driver."
Jenkins [Tue, 14 Apr 2015 11:20:15 +0000 (11:20 +0000)]
Merge "Fixes snapshot creation failure in CloudByte driver."

9 years agoMerge "Logging not using oslo.i18n guidelines (brick)"
Jenkins [Tue, 14 Apr 2015 09:20:07 +0000 (09:20 +0000)]
Merge "Logging not using oslo.i18n guidelines (brick)"

9 years agoMerge "Verify all quotas before updating the database"
Jenkins [Tue, 14 Apr 2015 08:51:20 +0000 (08:51 +0000)]
Merge "Verify all quotas before updating the database"

9 years agoMerge "Update openstack-common reference in openstack/common/README"
Jenkins [Mon, 13 Apr 2015 23:24:24 +0000 (23:24 +0000)]
Merge "Update openstack-common reference in openstack/common/README"

9 years agoMerge "Removed sleep before 'YES' is sent to confim an operation"
Jenkins [Mon, 13 Apr 2015 23:22:22 +0000 (23:22 +0000)]
Merge "Removed sleep before 'YES' is sent to confim an operation"

9 years agoReworked Dell SC iSCSI target portal return
Tom Swanson [Thu, 9 Apr 2015 20:24:27 +0000 (15:24 -0500)]
Reworked Dell SC iSCSI target portal return

On initialize_connection the code to determine the portal, lun and
iqn info to return could skip ports and potentially not return the
best portal choice.  In the case of multipath being enabled not all
ports would be returned.

Also changed a LOG.debug to a LOG.info in initialize_connection.

Closes-bug: 1442346

Change-Id: I2c5235da4d373d15303325a51ed1d4c37fd38815

9 years agoFix LUN misalignment issue with NetApp iSCSI drivers
Navneet Singh [Wed, 1 Oct 2014 18:31:41 +0000 (00:01 +0530)]
Fix LUN misalignment issue with NetApp iSCSI drivers

This patch fixes LUN misalignment issues that can be
experienced when provisioning Cinder volumes with the iSCSI
protocol. In the fix, two new SAN options for configuring
LUN OS and initiator OS used while attaching volume can be
specified. This gives the admin flexibility to configure
backends correctly for multiple hypervisor and guest OS
platforms.

Closes-Bug: 1410107

Change-Id: If09e1ad41880e8070afddde5606c6536b03396fe

9 years agoRemove the export creation during volume creation for migration
Vincent Hou [Mon, 13 Apr 2015 03:20:35 +0000 (11:20 +0800)]
Remove the export creation during volume creation for migration

Since create_export was moved from create_volume to
initialize_connection, the migrate_volume part should change
accordingly.

Change-Id: I42637c5d861670fb125e78918c2b5b2b13ea43d4
Closes-bug: #1278289

9 years agoFix assertEqual in test_volume.py in correct order of params
Vincent Hou [Thu, 9 Apr 2015 05:43:17 +0000 (13:43 +0800)]
Fix assertEqual in test_volume.py in correct order of params

AssertEqual/assertDictMatch is called with the wrong order of
parameters in many parts of test_volume.py. This patch fix them
all for test_volume.py.

Change-Id: I2ffb3a928710eb22eac9fc3afb6c2e38dc9903ce
Closes-bug: #1441964

9 years agoMerge "VNX Cinder Driver should report 0 free_capacity_gb in some scenarios"
Jenkins [Sun, 12 Apr 2015 05:19:34 +0000 (05:19 +0000)]
Merge "VNX Cinder Driver should report 0 free_capacity_gb in some scenarios"

9 years agoMerge "set default auth_strategy to keystone"
Jenkins [Sat, 11 Apr 2015 05:26:49 +0000 (05:26 +0000)]
Merge "set default auth_strategy to keystone"

9 years agoMerge "VMware: Fix missing target resource pool"
Jenkins [Sat, 11 Apr 2015 04:56:32 +0000 (04:56 +0000)]
Merge "VMware: Fix missing target resource pool"

9 years agoVNX Cinder Driver should report 0 free_capacity_gb in some scenarios
Jeegn Chen [Thu, 2 Apr 2015 08:42:08 +0000 (16:42 +0800)]
VNX Cinder Driver should report 0 free_capacity_gb in some scenarios

When the storage pool is Initializing, Offline or Deleting, no more LUNs
can be created before the pool gets out of the state.
So when a pool is in the 3 states, its free capacity is de facto 0.

This patch is to add logic to report 0 free capacity accordingly.

Change-Id: I4ef56d48e987795a48e6dcb23615e4b2a7580452
Closes-Bug: #1431233

9 years agoInclude boot properties from glance v2 images
Jon Bernard [Tue, 7 Apr 2015 17:57:36 +0000 (13:57 -0400)]
Include boot properties from glance v2 images

In order for users to take advantage of COW volumes created from
a glance image, Cinder must be configured to use Glance API version
2 (default is 1). In version 2, the required boot metadata (kernel_id
and ramdisk_id) are no long stored in the 'properties' dict, but as
standalone fields in the GET response from glance. The existing cinder
parser for the glance request is not aware of this and the volume
created form a v2 image will lack this required metadata.

This was causing the recent Ceph CI gate failures for
test_volume_boot_pattern.

Change-Id: I688898b3841691369d73887f7eabdceb05155db1
Closes-Bug: #1439371

9 years agoLogging not using oslo.i18n guidelines (brick)
Sean McGinnis [Thu, 9 Apr 2015 15:32:03 +0000 (10:32 -0500)]
Logging not using oslo.i18n guidelines (brick)

Multi-patch set for easier chunks. This one addresses
the backup and common cinder directories.

Updates have already been made to the os-brick project.

There have been quite a few instances found where the
i18n guidelines are not being followed. I believe this
has helped lead to some of the confusion around how to
correctly do this. Other developers see this code and
assume it is an example of the correct usage.

This patch attempts to clean up most of those violations
in the existing codebase to hopefully help avoid some of
that confusion in reviews.

Some issues address:
* Correct log translation markers for different log levels
* Passing format values as arguments to call, not preformatting
* Not forcing translation via six.text_type and others

Guidelines can be found here:
http://docs.openstack.org/developer/oslo.i18n/guidelines.html

Hacking checks will not be able to identify all violations of
the guidelines, but it could be useful for catching obvious ones
such as LOG.info("No markers!").

Change-Id: I993a0a567383dfe6fca13dfcc76758ea3a46e1dd
Partial-bug: 1433216

9 years agoset default auth_strategy to keystone
Christian Berendt [Mon, 5 May 2014 07:09:38 +0000 (09:09 +0200)]
set default auth_strategy to keystone

Like in change Ife63dc7ab680fcf0588d95c98fc9f29901485c64 for Nova
the default for auth_strategy should be keystone instead of noauth.

DocImpact Changed default config option 'auth_strategy' to 'keystone'.

Change-Id: Ia72c5bf9be641b438a4d428ba43e501d1aa333d6
Closes-Bug: #1327503

9 years agoMerge "Open Liberty development"
Jenkins [Thu, 9 Apr 2015 11:14:07 +0000 (11:14 +0000)]
Merge "Open Liberty development"

9 years agoMerge "Create initiator id if not exist in VMAX driver"
Jenkins [Thu, 9 Apr 2015 10:08:50 +0000 (10:08 +0000)]
Merge "Create initiator id if not exist in VMAX driver"

9 years agoOpen Liberty development
Thierry Carrez [Tue, 7 Apr 2015 14:40:30 +0000 (16:40 +0200)]
Open Liberty development

Bump pre-version in setup.cfg to formally open Liberty development.
Kilo release branch will be cut from the previous commit.

Depends-On: I868118528d831a9f49081a6393e64eb7a414b36f
Change-Id: I2934522ec7e7a4485f9a3a07e0b375587c976bd9

9 years agoRemoved sleep before 'YES' is sent to confim an operation
Pradeep Sathasivam [Wed, 8 Apr 2015 07:26:23 +0000 (12:56 +0530)]
Removed sleep before 'YES' is sent to confim an operation

Removed sleep between the time a command is sent
and 'YES' is sent to confim the operation. We have
discussed this internally and have concluded that
the sleep was mistakenly added in the initial coding
from an example of the SSH code. We have done full
functionality testing of the zoning operations on
Brocade switches with the sleep removed and have
found no side effects from the removal

Additionally, no other Brocade management
applications which perform zoning on our switches
require sleep intervals between execution of
commands. We are confident that the sleep is not
necessary and can be removed

Change-Id: I2ac6e50ff3d231b4d404f1a0be29f907e8d20458
Closes-Bug: #1436594

9 years agoMerge "Fix the unicode encode error when create volume"
Jenkins [Thu, 9 Apr 2015 04:41:50 +0000 (04:41 +0000)]
Merge "Fix the unicode encode error when create volume"

9 years agoMerge "GlusterFS: Returning provider location of volume from snapshot"
Jenkins [Thu, 9 Apr 2015 02:41:14 +0000 (02:41 +0000)]
Merge "GlusterFS: Returning provider location of volume from snapshot"

9 years agoMerge "Fix multipath device discovery when UFN is enabled."
Jenkins [Wed, 8 Apr 2015 20:27:27 +0000 (20:27 +0000)]
Merge "Fix multipath device discovery when UFN is enabled."

9 years agoMerge "Revert "Removing Windows drivers""
Jenkins [Wed, 8 Apr 2015 18:52:14 +0000 (18:52 +0000)]
Merge "Revert "Removing Windows drivers""

9 years agoUpdate openstack-common reference in openstack/common/README
Kamil Rykowski [Wed, 8 Apr 2015 15:48:31 +0000 (17:48 +0200)]
Update openstack-common reference in openstack/common/README

The README file under the openstack/common directory references to
openstack-common, but the link points to oslo-incubator (which is
correct). Update the file, so that it makes use of oslo-incubator
instead of openstack-common.

Change-Id: Ie02770954e726f0b9784465e6f167335bcb501c3
Closes-Bug: 1434370

9 years agoMerge "Delete the temporary volume if migration fails"
Jenkins [Wed, 8 Apr 2015 12:52:51 +0000 (12:52 +0000)]
Merge "Delete the temporary volume if migration fails"

9 years agoMerge "Rbd update volume stats in wrong way"
Jenkins [Wed, 8 Apr 2015 12:52:39 +0000 (12:52 +0000)]
Merge "Rbd update volume stats in wrong way"

9 years agoGlusterFS: Returning provider location of volume from snapshot
Bharat Kumar Kobagana [Wed, 8 Apr 2015 06:32:32 +0000 (12:02 +0530)]
GlusterFS: Returning provider location of volume from snapshot

This patch returns the provider location of volume, which is
created from snapshot.

Partial-Bug: 1441050
Reported-By: Deepak C Shetty <deepakcs@redhat.com>
Change-Id: I5994f2f6c125888d442055d9e65355f0af1b22f4

9 years agoFixes snapshot creation failure in CloudByte driver.
yogeshprasad [Thu, 26 Mar 2015 12:52:09 +0000 (18:22 +0530)]
Fixes snapshot creation failure in CloudByte driver.

Driver will use OpenStack snapshot id as snapshot name to
create a snapshot.

Previously it was using user entered value.

Change-Id: I93aa6359ee2cad5ee1223d5d4d402d92ecc953aa
Closes-Bug: #1436675

9 years agoMerge "Correct cinder hacking check numbering"
Jenkins [Wed, 8 Apr 2015 09:15:43 +0000 (09:15 +0000)]
Merge "Correct cinder hacking check numbering"

9 years agoMerge "Add hacking check for print() statements"
Jenkins [Wed, 8 Apr 2015 08:28:34 +0000 (08:28 +0000)]
Merge "Add hacking check for print() statements"

9 years agoDelete the temporary volume if migration fails
Vincent Hou [Tue, 3 Mar 2015 08:04:41 +0000 (16:04 +0800)]
Delete the temporary volume if migration fails

Issues resolved in this patch include the following changes:
* A temporary volume is created on the destination host before migrating
the data from the source. However, if the creation of this volume fails,
its record will be left in the database as redundant information. This
patch will remove the database record if the creation fails.

* If attaching the remote dest volme fails at initialize_connection
due to timeout, we need to terminate the connection. Otherwise, the dest
volume will not be released and successfully deleted.

Closes-bug: #1398177
Change-Id: I5bc75bd7652841fddd66481ee001fb682168215c

9 years agoRevert "Removing Windows drivers"
Mike Perez [Wed, 8 Apr 2015 06:06:57 +0000 (23:06 -0700)]
Revert "Removing Windows drivers"

This reverts commit 85f0814e1a96ea043e8048cf7081f70fa024f20b.

Change-Id: I0b078a60e8d9c95d12185d1ff3ffe74fb71f10ab

9 years agoMerge "Partial Revert "Removing ZFSSA driver""
Jenkins [Tue, 7 Apr 2015 23:56:57 +0000 (23:56 +0000)]
Merge "Partial Revert "Removing ZFSSA driver""

9 years agoMerge "Add missing copy_volume_to_image method to Sheepdog driver"
Jenkins [Tue, 7 Apr 2015 21:40:17 +0000 (21:40 +0000)]
Merge "Add missing copy_volume_to_image method to Sheepdog driver"

9 years agoMerge "Partial Revert "Removing Huawei drivers""
Jenkins [Tue, 7 Apr 2015 21:37:35 +0000 (21:37 +0000)]
Merge "Partial Revert "Removing Huawei drivers""

9 years agoMerge "Set volume_attachment to [] for the temporary volume creation"
Jenkins [Tue, 7 Apr 2015 20:28:49 +0000 (20:28 +0000)]
Merge "Set volume_attachment to [] for the temporary volume creation"

9 years agoCorrect cinder hacking check numbering
Jay S. Bryant [Mon, 6 Apr 2015 19:02:31 +0000 (14:02 -0500)]
Correct cinder hacking check numbering

We have a couple of hacking checks that are specific to
Cinder that were written a while back.  Unfortunately, when
they were written the numbering scheme for hacking checks was
not understood.  We used N3xx when we should have used C3xx.

This patch corrects that mistake.

Change-Id: Ia17797005d444ab53a45b47b80b97799114001ee
Closes-bug: 1440833

9 years agoAdd hacking check for print() statements
Jay S. Bryant [Mon, 6 Apr 2015 16:22:09 +0000 (11:22 -0500)]
Add hacking check for print() statements

We are frequently having to -1 patches because people
forget print() statements that were used for debug in
their development.  Can save everyone time and trouble by
adding this simple hacking check.

The check excluded the cinder/cmd directory as the files in there
legitimately need to use the print() command.  Also wsgi.py and
the test_hds_nas_backend.py files make use of print, so I have
excluded those from checking as well.

Change-Id: I2066eeb2bdc6c9af294d0b9befb7e0b32abd1378

9 years agoRbd update volume stats in wrong way
wuyuting [Fri, 20 Mar 2015 10:41:11 +0000 (18:41 +0800)]
Rbd update volume stats in wrong way

Cinder volume uses a RADOS pool to store volumes and
update storage stats periodically. However, rbd driver
reports the whole cluster stats but not the pool's. This
is wrong. The right way is to report the pool stats but
not the whole cluster.

Change-Id: Ie18324ebd8b85f7b63dc034ba20857ae9e470804
Closes-Bug: #1434441

9 years agoAdd missing copy_volume_to_image method to Sheepdog driver
YAMADA Hideki [Wed, 4 Mar 2015 18:11:23 +0000 (18:11 +0000)]
Add missing copy_volume_to_image method to Sheepdog driver

Copy Volume to Image feature is required since Havana release.
The Sheepdog driver has not implemented it.

Change-Id: I940095be7ed3721cc8f1bafde821fbb420d305d0
Closes-Bug: #1426431

9 years agoPartial Revert "Removing Huawei drivers"
Mike Perez [Mon, 6 Apr 2015 04:40:47 +0000 (21:40 -0700)]
Partial Revert "Removing Huawei drivers"

This reverts commit 5e26b0c1d1ae1984e51ae47441e8a243f224bf29.

Change-Id: Iad7c1afff1a932876255a37fc0b5bf5993246aaa

9 years agoMerge "More error handling on EMC VNX migration failure"
Jenkins [Tue, 7 Apr 2015 04:36:22 +0000 (04:36 +0000)]
Merge "More error handling on EMC VNX migration failure"

9 years agoMerge "Fixed encrypted property for 3PAR FC and iSCSI drivers"
Jenkins [Tue, 7 Apr 2015 03:47:40 +0000 (03:47 +0000)]
Merge "Fixed encrypted property for 3PAR FC and iSCSI drivers"

9 years agoCreate initiator id if not exist in VMAX driver
Xing Yang [Sat, 4 Apr 2015 22:25:48 +0000 (18:25 -0400)]
Create initiator id if not exist in VMAX driver

This problem was discovered in a customer's environment. If the
initiator id (hardware id SMI-S instance) does not exist on the
array, the attach volume operation will fail. In this patch,
the initiator id will be created if it doesn't exist.

Change-Id: I868118528d831a9f49081a6393e64eb7a414b36f
Closes-Bug: #1440427

9 years agoMerge "Revert "Removing Netapp FC drivers for no reported CI""
Jenkins [Mon, 6 Apr 2015 16:59:13 +0000 (16:59 +0000)]
Merge "Revert "Removing Netapp FC drivers for no reported CI""

9 years agoFixed encrypted property for 3PAR FC and iSCSI drivers
Anthony Lee [Fri, 3 Apr 2015 05:07:27 +0000 (22:07 -0700)]
Fixed encrypted property for 3PAR FC and iSCSI drivers

3PAR FC and iSCSI drivers were not returning the 'encrypted'
property when initialize_connection was called. This patch
adds that property to the returned info.

Closes-Bug: #1439917
Change-Id: Icfbebd055ea1bae1fc4749b441eb4f90fa1bfacd

9 years agoPartial Revert "Removing ZFSSA driver"
Mike Perez [Mon, 6 Apr 2015 05:13:03 +0000 (22:13 -0700)]
Partial Revert "Removing ZFSSA driver"

This reverts commit c742566a6920f7260573fbd0dc71a5cc1e4a2311.

However, the ZFSSA iSCSI driver is still left out because there is no CI
for it.

Change-Id: Ibf830f295043624ca9a5dc90f1e3a897cb64915f

9 years agoMerge "Check volume status in detach db api"
Jenkins [Mon, 6 Apr 2015 13:40:26 +0000 (13:40 +0000)]
Merge "Check volume status in detach db api"

9 years agoMerge "Added provider_id to volume and snapshot object"
Jenkins [Mon, 6 Apr 2015 11:10:50 +0000 (11:10 +0000)]
Merge "Added provider_id to volume and snapshot object"

9 years agoMerge "VMware: Fix instance_uuid access in volume retype"
Jenkins [Mon, 6 Apr 2015 08:52:00 +0000 (08:52 +0000)]
Merge "VMware: Fix instance_uuid access in volume retype"

9 years agoMerge "Use six.text_type instead of unicode"
Jenkins [Mon, 6 Apr 2015 08:51:49 +0000 (08:51 +0000)]
Merge "Use six.text_type instead of unicode"

9 years agoMerge "Logging not using oslo.i18n guidelines"
Jenkins [Mon, 6 Apr 2015 08:51:38 +0000 (08:51 +0000)]
Merge "Logging not using oslo.i18n guidelines"

9 years agoMerge "Fix argument order in assertEqual: tests/test_service.py"
Jenkins [Mon, 6 Apr 2015 08:51:27 +0000 (08:51 +0000)]
Merge "Fix argument order in assertEqual: tests/test_service.py"

9 years agoMerge "VMware: Skip vSAN for preallocated image download"
Jenkins [Sun, 5 Apr 2015 23:15:44 +0000 (23:15 +0000)]
Merge "VMware: Skip vSAN for preallocated image download"

9 years agoMerge "Fixes nits in check_no_contextlib_nested"
Jenkins [Sun, 5 Apr 2015 18:31:45 +0000 (18:31 +0000)]
Merge "Fixes nits in check_no_contextlib_nested"

9 years agoMerge "Add project_id to barbican keymgr wrapper"
Jenkins [Sun, 5 Apr 2015 18:17:28 +0000 (18:17 +0000)]
Merge "Add project_id to barbican keymgr wrapper"

9 years agoMerge "Dell SC driver has insufficient iscsi logging"
Jenkins [Sun, 5 Apr 2015 14:58:20 +0000 (14:58 +0000)]
Merge "Dell SC driver has insufficient iscsi logging"

9 years agoMerge "Fix incorrect invocation of _add_to_threadpool"
Jenkins [Sun, 5 Apr 2015 01:12:31 +0000 (01:12 +0000)]
Merge "Fix incorrect invocation of _add_to_threadpool"

9 years agoMerge "Tests: Fix v6000 test failure with random hash seed"
Jenkins [Sat, 4 Apr 2015 16:52:41 +0000 (16:52 +0000)]
Merge "Tests: Fix v6000 test failure with random hash seed"

9 years agoMerge "Enable H238 hacking rule"
Jenkins [Sat, 4 Apr 2015 16:52:30 +0000 (16:52 +0000)]
Merge "Enable H238 hacking rule"

9 years agoMerge "Storwize: Replication status still active when primary copy is offline"
Jenkins [Sat, 4 Apr 2015 16:46:32 +0000 (16:46 +0000)]
Merge "Storwize: Replication status still active when primary copy is offline"

9 years agoMerge "Fix: Boot from image with HNAS iSCSI"
Jenkins [Sat, 4 Apr 2015 16:14:56 +0000 (16:14 +0000)]
Merge "Fix: Boot from image with HNAS iSCSI"

9 years agoMerge "Fix ISCSIDriver initialized connection volume type"
Jenkins [Sat, 4 Apr 2015 02:27:04 +0000 (02:27 +0000)]
Merge "Fix ISCSIDriver initialized connection volume type"

9 years agoMock wait_for_volume_removal in test_brick_connector
Jay S. Bryant [Fri, 3 Apr 2015 19:19:28 +0000 (14:19 -0500)]
Mock wait_for_volume_removal in test_brick_connector

Systems where /dev/disk/by-path did exist were failing unit
test for test_connect_volume, test_connect_volume_with_alternative_targets
and test_connect_volume_with_alternative_targets_primary_error in
cinder.tests.test_brick_connector .  The problem was that the test
cases were mocking out os.path to return exists.  This resulted in
the new code from commit 43029941219505bc3861dd285e3393e08c76b433
never being able to exit the wait_for_volume_removal loop.

To avoid this problem I am mocking out wait_for_volume_removal for these
test cases.  wait_for_volume_removal is tested elsewhere and not relevant
for these test cases.

Change-Id: Ib7f75c852f9c79f261e319be0c1e3fd21acab8f1
Closes-bug: 1440153

9 years agoMerge "Only use operational LIFs for iscsi target details"
Jenkins [Fri, 3 Apr 2015 17:54:21 +0000 (17:54 +0000)]
Merge "Only use operational LIFs for iscsi target details"

9 years agoDell SC driver has insufficient iscsi logging
Tom Swanson [Thu, 2 Apr 2015 22:55:44 +0000 (17:55 -0500)]
Dell SC driver has insufficient iscsi logging

In the case where a volume was mapped but the server could not
locate the volume not enough information was being logged to
sort out the failure. Added logging to Dell SC ISCSI driver.
Now returns much more connection information on trying to map
a volume. Also tries to return iscsi properties associated with
the controller on which the volume in question is active.

Updated tests.

Minor comment change.

Change-Id: I76bf501152802c5421be316703615fdc27a49072
Closes-Bug: 1439852

9 years agoMerge "Fix missing clone_image API support for sheepdog driver."
Jenkins [Fri, 3 Apr 2015 12:33:08 +0000 (12:33 +0000)]
Merge "Fix missing clone_image API support for sheepdog driver."

9 years agoVMware: Skip vSAN for preallocated image download
Vipin Balachandran [Wed, 7 Jan 2015 06:09:43 +0000 (11:39 +0530)]
VMware: Skip vSAN for preallocated image download

Copying preallocated image to volume involves creating
a virtual disk using the image. The virtual disk has a
descriptor and an extent. The preallocated image is used
as the flat extent to create the virtual disk.

To create virtual disk from preallocated image, we first
create a temporary virtual disk (with a descriptor and
flat extent), then replace its flat extent with the
downloaded image. Since vSAN datastores do not support
flat extent, the above operation fails if such a datastore
is selected for virtual disk creation. This patch fixes
the problem by not selecting vSAN datastores for temporary
virtual disk creation.

Change-Id: Ib4c0fcf5c379b137e70378f137d996bf510f05b3
Closes-Bug: #1301943

9 years agoMerge "Fix wrong command for _rescan_multipath"
Jenkins [Thu, 2 Apr 2015 17:30:38 +0000 (17:30 +0000)]
Merge "Fix wrong command for _rescan_multipath"

9 years agoEnable H238 hacking rule
Anton Arefiev [Thu, 2 Apr 2015 16:12:52 +0000 (19:12 +0300)]
Enable H238 hacking rule

Hacking 0.10 introduces new hacking rule H238 - old style classes
are deprecated (they are converted to new style classes - inherit
from `object`). In order to avoid any unwanted side effects all
classes should be declared using new style.

See reference on the differences:
https://www.python.org/download/releases/2.2.3/descrintro/

Change-Id: Iec5620e8f9da2d051a3754391eab4e75faf644e0

9 years agoUse six.text_type instead of unicode
Ivan Kolodyazhny [Thu, 2 Apr 2015 14:55:48 +0000 (17:55 +0300)]
Use six.text_type instead of unicode

Add hacking checks for unicode() calls

Change-Id: I27062986e69a90e3f4fc26a76080b146e825149b
Closes-Bug: #1380806

9 years agoFix ISCSIDriver initialized connection volume type
Aviram Bar-Haim [Thu, 2 Apr 2015 14:37:04 +0000 (17:37 +0300)]
Fix ISCSIDriver initialized connection volume type

ISCSIDriver initialize connection is a duplicated function
left in kilo to serve drivers that don't use the new targets model.

In Kilo there is a new parameter of iscsi_protocol, that is set to
iscsi by default and can be changed to iser in order to enable RDMA.

In order support RDMA in drivers that still inherit from ISCSIDriver,
driver_volume_type should be set to iscsi_protocol parameter value
instead of a hard coded value until this function duplication will be solved.

Closes-Bug: #1438833

Change-Id: If51ff933b75bf475c779d2599776f8a83acc08e5