1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
HeatStacks.create_update_delete_stack:
-
args:
template_path: "{{ tmpl_dir }}/autoscaling_policy.yaml.template"
updated_template_path: "{{ tmpl_dir }}/updated_autoscaling_policy_inplace.yaml.template"
context:
{{ user_context(tenants_amount, users_amount, use_existing_users) }}
runner:
{{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }}
sla:
{{ no_failures_sla() }}
HeatStacks.create_check_delete_stack:
-
args:
template_path: "{{ tmpl_dir }}/random_strings.yaml.template"
context:
{{ user_context(tenants_amount, users_amount, use_existing_users) }}
runner:
{{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }}
sla:
{{ no_failures_sla() }}
HeatStacks.create_suspend_resume_delete_stack:
-
args:
template_path: "{{ tmpl_dir }}/random_strings.yaml.template"
context:
{{ user_context(tenants_amount, users_amount, use_existing_users) }}
runner:
{{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }}
sla:
{{ no_failures_sla() }}
HeatStacks.list_stacks_and_resources:
-
context:
{{ user_context(tenants_amount, users_amount, use_existing_users) }}
runner:
{{ constant_runner(concurrency=concurrency, times=iterations, is_smoke=smoke) }}
sla:
{{ no_failures_sla() }}
|