c5261e1fd0
- create-container-and-object-then-delete-all - create-container-and-object-then-list-objects - list-objects-in-containers Change-Id: Ib0acf997f55504515f0de37056afc0d724ada58e
25 lines
742 B
YAML
25 lines
742 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 %}
|
|
---
|
|
SwiftObjects.create_container_and_object_then_list_objects:
|
|
-
|
|
args:
|
|
objects_per_container: {{ objects_per_container }}
|
|
object_size: {{ object_size }}
|
|
runner:
|
|
type: "constant"
|
|
times: {{ times }}
|
|
concurrency: {{ concurrency }}
|
|
context:
|
|
users:
|
|
tenants: 1
|
|
users_per_tenant: 1
|
|
roles:
|
|
- "admin"
|
|
sla:
|
|
max_avg_duration: {{ sla_max_avg_duration }}
|
|
max_seconds_per_iteration: {{ sla_max_seconds }}
|
|
failure_rate:
|
|
max: {{ sla_max_failure }}
|