![Andrey Kurilin](/assets/img/avatar_default.png)
Move all modules under the next structure: - rally_openstack.common - rally_openstack.enviromnet - rally_openstack.task - rally_openstack.verification Change-Id: I41702d017cd49b117da3b8e12b19c7327229ae32
330 lines
14 KiB
Python
Executable File
330 lines
14 KiB
Python
Executable File
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import random
|
|
|
|
from rally.common import utils as rutils
|
|
from rally.task import atomic
|
|
|
|
from rally_openstack.common import service
|
|
from rally_openstack.common.services.storage import block
|
|
from rally_openstack.common.services.storage import cinder_common
|
|
|
|
|
|
CONF = block.CONF
|
|
|
|
|
|
@service.service("cinder", service_type="block-storage", version="1")
|
|
class CinderV1Service(service.Service, cinder_common.CinderMixin):
|
|
|
|
@atomic.action_timer("cinder_v1.create_volume")
|
|
def create_volume(self, size, snapshot_id=None, source_volid=None,
|
|
display_name=None, display_description=None,
|
|
volume_type=None, user_id=None,
|
|
project_id=None, availability_zone=None,
|
|
metadata=None, imageRef=None):
|
|
"""Creates a volume.
|
|
|
|
:param size: Size of volume in GB
|
|
:param snapshot_id: ID of the snapshot
|
|
:param display_name: Name of the volume
|
|
:param display_description: Description of the volume
|
|
:param volume_type: Type of volume
|
|
:param user_id: User id derived from context
|
|
:param project_id: Project id derived from context
|
|
:param availability_zone: Availability Zone to use
|
|
:param metadata: Optional metadata to set on volume creation
|
|
:param imageRef: reference to an image stored in glance
|
|
|
|
:returns: Return a new volume.
|
|
"""
|
|
if isinstance(size, dict):
|
|
size = random.randint(size["min"], size["max"])
|
|
|
|
volume = self._get_client().volumes.create(
|
|
size,
|
|
display_name=(display_name or self.generate_random_name()),
|
|
display_description=display_description,
|
|
snapshot_id=snapshot_id,
|
|
source_volid=source_volid,
|
|
volume_type=volume_type,
|
|
user_id=user_id,
|
|
project_id=project_id,
|
|
availability_zone=availability_zone,
|
|
metadata=metadata,
|
|
imageRef=imageRef
|
|
)
|
|
|
|
# NOTE(msdubov): It is reasonable to wait 5 secs before starting to
|
|
# check whether the volume is ready => less API calls.
|
|
rutils.interruptable_sleep(
|
|
CONF.openstack.cinder_volume_create_prepoll_delay)
|
|
|
|
return self._wait_available_volume(volume)
|
|
|
|
@atomic.action_timer("cinder_v1.update_volume")
|
|
def update_volume(self, volume_id, display_name=None,
|
|
display_description=None):
|
|
"""Update the name or description for a volume.
|
|
|
|
:param volume_id: The updated volume id.
|
|
:param display_name: The volume name.
|
|
:param display_description: The volume description.
|
|
|
|
:returns: The updated volume.
|
|
"""
|
|
kwargs = {}
|
|
if display_name is not None:
|
|
kwargs["display_name"] = display_name
|
|
if display_description is not None:
|
|
kwargs["display_description"] = display_description
|
|
updated_volume = self._get_client().volumes.update(
|
|
volume_id, **kwargs)
|
|
return updated_volume["volume"]
|
|
|
|
@atomic.action_timer("cinder_v1.list_volumes")
|
|
def list_volumes(self, detailed=True, search_opts=None, limit=None):
|
|
"""List all volumes."""
|
|
return self._get_client().volumes.list(detailed=detailed,
|
|
search_opts=search_opts,
|
|
limit=limit)
|
|
|
|
@atomic.action_timer("cinder_v1.list_types")
|
|
def list_types(self, search_opts=None):
|
|
"""Lists all volume types."""
|
|
return (self._get_client()
|
|
.volume_types.list(search_opts))
|
|
|
|
@atomic.action_timer("cinder_v1.create_snapshot")
|
|
def create_snapshot(self, volume_id, force=False,
|
|
display_name=None, display_description=None):
|
|
"""Create one snapshot.
|
|
|
|
Returns when the snapshot is actually created and is in the "Available"
|
|
state.
|
|
|
|
:param volume_id: volume uuid for creating snapshot
|
|
:param force: flag to indicate whether to snapshot a volume even if
|
|
it's attached to an instance
|
|
:param display_name: Name of the snapshot
|
|
:param display_description: Description of the snapshot
|
|
:returns: Created snapshot object
|
|
"""
|
|
kwargs = {"force": force,
|
|
"display_name": display_name or self.generate_random_name(),
|
|
"display_description": display_description}
|
|
|
|
snapshot = self._get_client().volume_snapshots.create(volume_id,
|
|
**kwargs)
|
|
rutils.interruptable_sleep(
|
|
CONF.openstack.cinder_volume_create_prepoll_delay)
|
|
snapshot = self._wait_available_volume(snapshot)
|
|
return snapshot
|
|
|
|
@atomic.action_timer("cinder_v1.create_backup")
|
|
def create_backup(self, volume_id, container=None,
|
|
name=None, description=None):
|
|
"""Create a volume backup of the given volume.
|
|
|
|
:param volume_id: The ID of the volume to backup.
|
|
:param container: The name of the backup service container.
|
|
:param name: The name of the backup.
|
|
:param description: The description of the backup.
|
|
"""
|
|
kwargs = {"name": name or self.generate_random_name(),
|
|
"description": description,
|
|
"container": container}
|
|
backup = self._get_client().backups.create(volume_id, **kwargs)
|
|
return self._wait_available_volume(backup)
|
|
|
|
@atomic.action_timer("cinder_v1.create_volume_type")
|
|
def create_volume_type(self, name=None):
|
|
"""create volume type.
|
|
|
|
:param kwargs: Optional additional arguments for volume type creation
|
|
:param name: Descriptive name of the volume type
|
|
"""
|
|
kwargs = {"name": name or self.generate_random_name()}
|
|
return self._get_client().volume_types.create(**kwargs)
|
|
|
|
|
|
@service.compat_layer(CinderV1Service)
|
|
class UnifiedCinderV1Service(cinder_common.UnifiedCinderMixin,
|
|
block.BlockStorage):
|
|
|
|
@staticmethod
|
|
def _unify_volume(volume):
|
|
if isinstance(volume, dict):
|
|
return block.Volume(id=volume["id"], name=volume["display_name"],
|
|
size=volume["size"], status=volume["status"])
|
|
else:
|
|
return block.Volume(id=volume.id, name=volume.display_name,
|
|
size=volume.size, status=volume.status)
|
|
|
|
@staticmethod
|
|
def _unify_snapshot(snapshot):
|
|
return block.VolumeSnapshot(id=snapshot.id, name=snapshot.display_name,
|
|
volume_id=snapshot.volume_id,
|
|
status=snapshot.status)
|
|
|
|
def create_volume(self, size, consistencygroup_id=None,
|
|
group_id=None, snapshot_id=None, source_volid=None,
|
|
name=None, description=None,
|
|
volume_type=None, user_id=None,
|
|
project_id=None, availability_zone=None,
|
|
metadata=None, imageRef=None, scheduler_hints=None,
|
|
backup_id=None):
|
|
"""Creates a volume.
|
|
|
|
:param size: Size of volume in GB
|
|
:param consistencygroup_id: ID of the consistencygroup
|
|
:param group_id: ID of the group
|
|
:param snapshot_id: ID of the snapshot
|
|
:param name: Name of the volume
|
|
:param description: Description of the volume
|
|
:param volume_type: Type of volume
|
|
:param user_id: User id derived from context
|
|
:param project_id: Project id derived from context
|
|
:param availability_zone: Availability Zone to use
|
|
:param metadata: Optional metadata to set on volume creation
|
|
:param imageRef: reference to an image stored in glance
|
|
:param source_volid: ID of source volume to clone from
|
|
:param scheduler_hints: (optional extension) arbitrary key-value pairs
|
|
specified by the client to help boot an instance
|
|
:param backup_id: ID of the backup(IGNORED)
|
|
|
|
:returns: Return a new volume.
|
|
"""
|
|
return self._unify_volume(self._impl.create_volume(
|
|
size, snapshot_id=snapshot_id, source_volid=source_volid,
|
|
display_name=name,
|
|
display_description=description,
|
|
volume_type=volume_type, user_id=user_id,
|
|
project_id=project_id, availability_zone=availability_zone,
|
|
metadata=metadata, imageRef=imageRef))
|
|
|
|
def list_volumes(self, detailed=True, search_opts=None, marker=None,
|
|
limit=None, sort=None):
|
|
"""Lists all volumes.
|
|
|
|
:param detailed: Whether to return detailed volume info.
|
|
:param search_opts: Search options to filter out volumes.
|
|
:param marker: Begin returning volumes that appear later in the volume
|
|
list than that represented by this volume id.(IGNORED)
|
|
:param limit: Maximum number of volumes to return.
|
|
:param sort: Sort information(IGNORED)
|
|
:returns: Return volumes list.
|
|
"""
|
|
return [self._unify_volume(volume)
|
|
for volume in self._impl.list_volumes(detailed=detailed,
|
|
search_opts=search_opts,
|
|
limit=limit)]
|
|
|
|
def get_volume(self, volume_id):
|
|
"""Get a volume.
|
|
|
|
:param volume_id: The ID of the volume to get.
|
|
|
|
:returns: Return the volume.
|
|
"""
|
|
return self._unify_volume(self._impl.get_volume(volume_id))
|
|
|
|
def extend_volume(self, volume, new_size):
|
|
"""Extend the size of the specified volume."""
|
|
return self._unify_volume(
|
|
self._impl.extend_volume(volume, new_size=new_size))
|
|
|
|
def update_volume(self, volume_id,
|
|
name=None, description=None):
|
|
"""Update the name or description for a volume.
|
|
|
|
:param volume_id: The updated volume id.
|
|
:param name: The volume name.
|
|
:param description: The volume description.
|
|
|
|
:returns: The updated volume.
|
|
"""
|
|
return self._unify_volume(self._impl.update_volume(
|
|
volume_id, display_name=name,
|
|
display_description=description))
|
|
|
|
def list_types(self, search_opts=None, is_public=None):
|
|
"""Lists all volume types."""
|
|
return self._impl.list_types(search_opts=search_opts)
|
|
|
|
def create_snapshot(self, volume_id, force=False,
|
|
name=None, description=None, metadata=None):
|
|
"""Create one snapshot.
|
|
|
|
Returns when the snapshot is actually created and is in the "Available"
|
|
state.
|
|
|
|
:param volume_id: volume uuid for creating snapshot
|
|
:param force: If force is True, create a snapshot even if the volume is
|
|
attached to an instance. Default is False.
|
|
:param name: Name of the snapshot
|
|
:param description: Description of the snapshot
|
|
:param metadata: Metadata of the snapshot
|
|
:returns: Created snapshot object
|
|
"""
|
|
return self._unify_snapshot(self._impl.create_snapshot(
|
|
volume_id, force=force, display_name=name,
|
|
display_description=description))
|
|
|
|
def list_snapshots(self, detailed=True):
|
|
"""Get a list of all snapshots."""
|
|
return [self._unify_snapshot(snapshot)
|
|
for snapshot in self._impl.list_snapshots(detailed=detailed)]
|
|
|
|
def create_backup(self, volume_id, container=None,
|
|
name=None, description=None,
|
|
incremental=False, force=False,
|
|
snapshot_id=None):
|
|
"""Creates a volume backup.
|
|
|
|
:param volume_id: The ID of the volume to backup.
|
|
:param container: The name of the backup service container.
|
|
:param name: The name of the backup.
|
|
:param description: The description of the backup.
|
|
:param incremental: Incremental backup.
|
|
:param force: If True, allows an in-use volume to be backed up.
|
|
:param snapshot_id: The ID of the snapshot to backup.
|
|
|
|
:returns: The created backup object.
|
|
"""
|
|
return self._unify_backup(self._impl.create_backup(
|
|
volume_id, container=container, name=name,
|
|
description=description))
|
|
|
|
def create_volume_type(self, name=None, description=None, is_public=True):
|
|
"""Creates a volume type.
|
|
|
|
:param name: Descriptive name of the volume type
|
|
:param description: Description of the volume type
|
|
:param is_public: Volume type visibility
|
|
:returns: Return the created volume type.
|
|
"""
|
|
return self._impl.create_volume_type(name=name)
|
|
|
|
def restore_backup(self, backup_id, volume_id=None):
|
|
"""Restore the given backup.
|
|
|
|
:param backup_id: The ID of the backup to restore.
|
|
:param volume_id: The ID of the volume to restore the backup to.
|
|
|
|
:returns: Return the restored backup.
|
|
"""
|
|
return self._unify_volume(self._impl.restore_backup(
|
|
backup_id, volume_id=volume_id))
|