Merge "Use paramiko library to SSH and SCP the instances in vPing2"
[functest.git] / testcases / VIM / OpenStack / CI / rally_cert / task.yaml
1 {%- set glance_image_location = glance_image_location|default("http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-disk.img") %}
2 {%- set image_name = image_name|default("functest-img-rally") %}
3 {%- set flavor_name = flavor_name|default("m1.tiny") %}
4 {%- set use_existing_users = use_existing_users|default(false) %}
5 {%- set service_list = service_list|default(["authenticate", "cinder", "keystone", "nova", "glance", "neutron", "quotas", "requests", "heat", "vm"]) %}
6 {%- set smoke = smoke|default(true) %}
7 {%- set floating_network = floating_network|default("net04_ext") %}
8 {%- set controllers_amount = controllers_amount|default(1) %}
9 {%- if smoke %}
10 {%- set users_amount = 1 %}
11 {%- set tenants_amount = 1 %}
12 {%- else %}
13 {%- set users_amount = users_amount|default(1) %}
14 {%- set tenants_amount = tenants_amount|default(1) %}
15 {%- endif %}
16
17 {%- from "macro/macro.yaml" import user_context, vm_params, unlimited_volumes, constant_runner, rps_runner, no_failures_sla -%}
18 {%- from "macro/macro.yaml" import volumes, unlimited_nova, unlimited_neutron, glance_args -%}
19
20 ---
21 {% if "authenticate" in service_list %}
22 {%- include "scenario/opnfv-authenticate.yaml"-%}
23 {% endif %}
24
25 {% if "cinder" in service_list %}
26 {%- include "scenario/opnfv-cinder.yaml"-%}
27 {% endif %}
28
29 {% if "keystone" in service_list %}
30 {%- include "scenario/opnfv-keystone.yaml"-%}
31 {% endif %}
32
33 {% if "nova" in service_list %}
34 {%- include "scenario/opnfv-nova.yaml"-%}
35 {% endif %}
36
37 {% if "glance" in service_list %}
38 {%- include "scenario/opnfv-glance.yaml"-%}
39 {% endif %}
40
41 {% if "neutron" in service_list %}
42 {%- include "scenario/opnfv-neutron.yaml"-%}
43 {% endif %}
44
45 {% if "quotas" in service_list %}
46 {%- include "scenario/opnfv-quotas.yaml"-%}
47 {% endif %}
48
49 {% if "requests" in service_list %}
50 {%- include "scenario/opnfv-requests.yaml"-%}
51 {% endif %}
52
53 {% if "heat" in service_list %}
54 {%- include "scenario/opnfv-heat.yaml"-%}
55 {% endif %}
56
57 {% if "vm" in service_list %}
58 {%- include "scenario/opnfv-vm.yaml"-%}
59 {% endif %}