0f64a144c8
Change-Id: Ie8f94cdcfb038bc2efa4ed410022e5bac9a07637
30 lines
829 B
YAML
30 lines
829 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_update_volume:
|
|
-
|
|
args:
|
|
update_volume_kwargs:
|
|
description: "desc_updated"
|
|
create_volume_kwargs: {}
|
|
size: {{ size }}
|
|
runner:
|
|
type: "constant"
|
|
times: {{ times }}
|
|
concurrency: {{ concurrency }}
|
|
context:
|
|
users:
|
|
tenants: 10
|
|
users_per_tenant: 20
|
|
quotas:
|
|
cinder:
|
|
gigabytes: -1
|
|
volumes: -1
|
|
sla:
|
|
max_avg_duration: {{ sla_max_avg_duration }}
|
|
max_seconds_per_iteration: {{ sla_max_seconds }}
|
|
failure_rate:
|
|
max: {{ sla_max_failure }}
|