browbeat/rally/manila/create-share-and-shrink.yaml
Asma Syed Hameed 4e99f1d424 Add manila workload scenarios
- create-share-network-and-list
- create-share-network-and-delete
- create-share-and-shrink
- create-share-and-extend

Change-Id: I9e3ec0ed0bd8a5a7f8801f29a80c97ad77d0991a
2022-01-25 12:21:35 +05:30

29 lines
782 B
YAML

{% 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 %}
---
ManilaShares.create_and_shrink_share:
-
args:
share_type: {{share_type}}
share_proto: "{{ share_proto }}"
size: 2
new_size: 1
runner:
type: "constant"
times: {{ times }}
concurrency: {{ concurrency }}
context:
quotas:
manila:
shares: -1
gigabytes: -1
users:
tenants: 2
users_per_tenant: 1
sla:
max_avg_duration: {{ sla_max_avg_duration }}
max_seconds_per_iteration: {{ sla_max_seconds }}
failure_rate:
max: {{ sla_max_failure }}