diff options
author | Juha Kosonen <juha.kosonen@nokia.com> | 2016-02-12 15:43:11 +0000 |
---|---|---|
committer | Juha Kosonen <juha.kosonen@nokia.com> | 2016-02-12 15:59:37 +0000 |
commit | 1d62586d396d948c523fb0b0e351ae162e7fdc6b (patch) | |
tree | bcf99ab0c936d71ccc758c75ee82f4049f1b5861 /testcases/VIM/OpenStack/CI/rally_cert | |
parent | 8fe327a57ddea90abaacbbf51a0d7b6274eb488f (diff) |
Rally live migration case selection
Execute live migration cases only if the feature is enabled in Tempest configuration file.
Change-Id: Ie88da2a8f6a4e22cbc96d6aa1f749d555ac58d84
Signed-off-by: Juha Kosonen <juha.kosonen@nokia.com>
Diffstat (limited to 'testcases/VIM/OpenStack/CI/rally_cert')
-rw-r--r-- | testcases/VIM/OpenStack/CI/rally_cert/scenario/opnfv-nova.yaml | 90 | ||||
-rw-r--r-- | testcases/VIM/OpenStack/CI/rally_cert/task.yaml | 1 |
2 files changed, 47 insertions, 44 deletions
diff --git a/testcases/VIM/OpenStack/CI/rally_cert/scenario/opnfv-nova.yaml b/testcases/VIM/OpenStack/CI/rally_cert/scenario/opnfv-nova.yaml index 006491293..823cd44bc 100644 --- a/testcases/VIM/OpenStack/CI/rally_cert/scenario/opnfv-nova.yaml +++ b/testcases/VIM/OpenStack/CI/rally_cert/scenario/opnfv-nova.yaml @@ -221,19 +221,6 @@ sla: {{ no_failures_sla() }} - NovaServers.boot_and_live_migrate_server: - - args: - {{ vm_params(image_name, flavor_name) }} - block_migration: false - nics: - - net-id: {{ netid }} - context: - {{ user_context(tenants_amount, users_amount, use_existing_users) }} - runner: - {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }} - sla: - {{ no_failures_sla() }} - NovaServers.boot_and_migrate_server: - args: {{ vm_params(image_name, flavor_name) }} @@ -273,37 +260,6 @@ sla: {{ no_failures_sla() }} - NovaServers.boot_server_attach_created_volume_and_live_migrate: - - - args: - {{ vm_params(image_name, flavor_name) }} - size: 10 - block_migration: false - boot_server_kwargs: - nics: - - net-id: {{ netid }} - context: - {{ user_context(tenants_amount, users_amount, use_existing_users) }} - runner: - {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }} - sla: - {{ no_failures_sla() }} - - NovaServers.boot_server_from_volume_and_live_migrate: - - args: - {{ vm_params(image_name, flavor_name) }} - block_migration: false - volume_size: 10 - force_delete: false - nics: - - net-id: {{ netid }} - context: - {{ user_context(tenants_amount, users_amount, use_existing_users) }} - runner: - {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }} - sla: - {{ no_failures_sla() }} - NovaSecGroup.create_and_delete_secgroups: - args: @@ -367,3 +323,49 @@ {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }} sla: {{ no_failures_sla() }} + +{% if live_migration %} + NovaServers.boot_and_live_migrate_server: + - args: + {{ vm_params(image_name, flavor_name) }} + block_migration: false + nics: + - net-id: {{ netid }} + context: + {{ user_context(tenants_amount, users_amount, use_existing_users) }} + runner: + {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }} + sla: + {{ no_failures_sla() }} + + NovaServers.boot_server_attach_created_volume_and_live_migrate: + - + args: + {{ vm_params(image_name, flavor_name) }} + size: 10 + block_migration: false + boot_server_kwargs: + nics: + - net-id: {{ netid }} + context: + {{ user_context(tenants_amount, users_amount, use_existing_users) }} + runner: + {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }} + sla: + {{ no_failures_sla() }} + + NovaServers.boot_server_from_volume_and_live_migrate: + - args: + {{ vm_params(image_name, flavor_name) }} + block_migration: false + volume_size: 10 + force_delete: false + nics: + - net-id: {{ netid }} + context: + {{ user_context(tenants_amount, users_amount, use_existing_users) }} + runner: + {{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }} + sla: + {{ no_failures_sla() }} +{% endif %} diff --git a/testcases/VIM/OpenStack/CI/rally_cert/task.yaml b/testcases/VIM/OpenStack/CI/rally_cert/task.yaml index 299421ac5..b67891664 100644 --- a/testcases/VIM/OpenStack/CI/rally_cert/task.yaml +++ b/testcases/VIM/OpenStack/CI/rally_cert/task.yaml @@ -3,6 +3,7 @@ {%- set flavor_name = flavor_name|default("m1.tiny") %} {%- set use_existing_users = use_existing_users|default(false) %} {%- set service_list = service_list|default(["authenticate", "cinder", "keystone", "nova", "glance", "neutron", "quotas", "requests", "heat", "vm"]) %} +{%- set live_migration = live_migration|default(false) %} {%- set smoke = smoke|default(true) %} {%- set floating_network = floating_network|default("net04_ext") %} {%- set controllers_amount = controllers_amount|default(1) %} |