71dda2027f
Change-Id: I6be1b18a94bcb7c09fd1b1dce5007b46aa8f4232
31 lines
817 B
YAML
31 lines
817 B
YAML
{% set size = size or 1 %}
|
|
{% set sla_max_avg_duration = sla_max_avg_duration or 60 %}
|
|
{% set sla_max_failure = sla_max_failure or 0 %}
|
|
{% set sla_max_seconds = sla_max_seconds or 60 %}
|
|
---
|
|
CinderVolumes.create_and_list_snapshots:
|
|
-
|
|
args:
|
|
force: False
|
|
detailed: True
|
|
runner:
|
|
type: "constant"
|
|
times: {{ times }}
|
|
concurrency: {{ concurrency }}
|
|
context:
|
|
users:
|
|
tenants: 10
|
|
users_per_tenant: 20
|
|
volumes:
|
|
size: {{ size }}
|
|
quotas:
|
|
cinder:
|
|
gigabytes: -1
|
|
volumes: -1
|
|
snapshots: -1
|
|
sla:
|
|
max_avg_duration: {{ sla_max_avg_duration }}
|
|
max_seconds_per_iteration: {{ sla_max_seconds }}
|
|
failure_rate:
|
|
max: {{ sla_max_failure }}
|