browbeat/rally/manila/create-share-allow-and-deny-access.yml
Asma Syed Hameed 972835d4e0 Manila: Add scenario to create share and and allow and deny access to it
Change-Id: Ie247bb419325761ff80c83cb7b85518dc71f0d13
2022-02-01 18:06:11 +05:30

30 lines
852 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_share_then_allow_and_deny_access:
-
args:
share_proto: "{{ share_proto }}"
share_type: {{ share_type }}
size: 1
access: "{{ access }}"
access_type: "{{ access_type }}"
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 }}