From 940e49a6cdf7ae0f8286c953952a9757ba63a20b Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Thu, 2 May 2019 14:44:08 +0200 Subject: Manage block_migration in Rally MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It creates a new env var BLOCK_MIGRATION (True by default) to allow block migration for live migration in Rally. It updates scenarios and blacklisting to take that env vars into account. Change-Id: I41129432798ae9e40fe23bbe2c2162df4c0dff80 Signed-off-by: Cédric Ollivier --- functest/opnfv_tests/openstack/rally/blacklist.yaml | 5 +++++ functest/opnfv_tests/openstack/rally/rally.py | 3 +++ functest/opnfv_tests/openstack/rally/scenario/full/opnfv-nova.yaml | 6 +++--- .../opnfv_tests/openstack/rally/scenario/sanity/opnfv-nova.yaml | 6 +++--- 4 files changed, 14 insertions(+), 6 deletions(-) (limited to 'functest/opnfv_tests/openstack/rally') diff --git a/functest/opnfv_tests/openstack/rally/blacklist.yaml b/functest/opnfv_tests/openstack/rally/blacklist.yaml index 4c85088a8..77c514245 100644 --- a/functest/opnfv_tests/openstack/rally/blacklist.yaml +++ b/functest/opnfv_tests/openstack/rally/blacklist.yaml @@ -10,6 +10,11 @@ scenario: - 'Quotas.nova_update_and_delete' functionality: + - + functions: + - block_migration + tests: + - NovaServers.boot_server_from_volume_and_live_migrate - functions: - no_migration diff --git a/functest/opnfv_tests/openstack/rally/rally.py b/functest/opnfv_tests/openstack/rally/rally.py index 3e1a2e78c..25de3cfb6 100644 --- a/functest/opnfv_tests/openstack/rally/rally.py +++ b/functest/opnfv_tests/openstack/rally/rally.py @@ -117,6 +117,7 @@ class RallyBase(singlevm.VmReady2): task_args['smoke'] = self.smoke task_args['volume_version'] = self.VOLUME_VERSION task_args['volume_service_type'] = self.VOLUME_SERVICE_TYPE + task_args['block_migration'] = env.get("BLOCK_MIGRATION").lower() if self.ext_net: task_args['floating_network'] = str(self.ext_net.name) @@ -327,6 +328,8 @@ class RallyBase(singlevm.VmReady2): with open(RallyBase.BLACKLIST_FILE, 'r') as black_list_file: black_list_yaml = yaml.safe_load(black_list_file) + if env.get('BLOCK_MIGRATION').lower() == 'true': + func_list.append("block_migration") if not self._migration_supported(): func_list.append("no_migration") if not self._network_trunk_supported(): diff --git a/functest/opnfv_tests/openstack/rally/scenario/full/opnfv-nova.yaml b/functest/opnfv_tests/openstack/rally/scenario/full/opnfv-nova.yaml index 0f4e7b26e..8ef5b6cdc 100644 --- a/functest/opnfv_tests/openstack/rally/scenario/full/opnfv-nova.yaml +++ b/functest/opnfv_tests/openstack/rally/scenario/full/opnfv-nova.yaml @@ -202,7 +202,7 @@ NovaServers.boot_and_live_migrate_server: - args: {{ vm_params(image_name, flavor_name) }} - block_migration: false + block_migration: {{ block_migration }} nics: - net-id: {{ netid }} context: @@ -217,7 +217,7 @@ args: {{ vm_params(image_name, flavor_name) }} size: 10 - block_migration: false + block_migration: {{ block_migration }} boot_server_kwargs: nics: - net-id: {{ netid }} @@ -233,7 +233,7 @@ NovaServers.boot_server_from_volume_and_live_migrate: - args: {{ vm_params(image_name, flavor_name) }} - block_migration: false + block_migration: {{ block_migration }} volume_size: 1 force_delete: false nics: diff --git a/functest/opnfv_tests/openstack/rally/scenario/sanity/opnfv-nova.yaml b/functest/opnfv_tests/openstack/rally/scenario/sanity/opnfv-nova.yaml index b92494a43..935f3841a 100644 --- a/functest/opnfv_tests/openstack/rally/scenario/sanity/opnfv-nova.yaml +++ b/functest/opnfv_tests/openstack/rally/scenario/sanity/opnfv-nova.yaml @@ -1,7 +1,7 @@ NovaServers.boot_and_live_migrate_server: - args: {{ vm_params(image_name, flavor_name) }} - block_migration: false + block_migration: {{ block_migration }} nics: - net-id: {{ netid }} context: @@ -16,7 +16,7 @@ args: {{ vm_params(image_name, flavor_name) }} size: 10 - block_migration: false + block_migration: {{ block_migration }} boot_server_kwargs: nics: - net-id: {{ netid }} @@ -32,7 +32,7 @@ NovaServers.boot_server_from_volume_and_live_migrate: - args: {{ vm_params(image_name, flavor_name) }} - block_migration: false + block_migration: {{ block_migration }} volume_size: 1 force_delete: false nics: -- cgit 1.2.3-korg