764c584fa9
List of changes: - Added support of 'attach-security-service-to-share-network' operation. - Added benchmark for creating security service and share network and attaching the former to the latter. Change-Id: Icc6fe65ddf796603e7f507b62c2f6c76a030c400
134 lines
2.7 KiB
YAML
134 lines
2.7 KiB
YAML
---
|
|
Dummy.dummy:
|
|
-
|
|
runner:
|
|
type: "constant"
|
|
times: 1
|
|
concurrency: 1
|
|
context:
|
|
users:
|
|
tenants: 1
|
|
users_per_tenant: 1
|
|
quotas:
|
|
manila:
|
|
shares: -1
|
|
gigabytes: -1
|
|
snapshots: -1
|
|
snapshot_gigabytes: -1
|
|
share_networks: -1
|
|
|
|
ManilaShares.list_shares:
|
|
-
|
|
args:
|
|
detailed: True
|
|
runner:
|
|
type: "constant"
|
|
times: 10
|
|
concurrency: 1
|
|
context:
|
|
users:
|
|
tenants: 1
|
|
users_per_tenant: 1
|
|
sla:
|
|
failure_rate:
|
|
max: 0
|
|
|
|
ManilaShares.create_share_network_and_delete:
|
|
-
|
|
args:
|
|
name: "rally"
|
|
runner:
|
|
type: "constant"
|
|
times: 10
|
|
concurrency: 10
|
|
context:
|
|
quotas:
|
|
manila:
|
|
share_networks: -1
|
|
users:
|
|
tenants: 2
|
|
users_per_tenant: 1
|
|
sla:
|
|
failure_rate:
|
|
max: 0
|
|
|
|
ManilaShares.create_share_network_and_list:
|
|
-
|
|
args:
|
|
name: "rally"
|
|
detailed: True
|
|
search_opts:
|
|
name: "rally"
|
|
runner:
|
|
type: "constant"
|
|
times: 10
|
|
concurrency: 10
|
|
context:
|
|
quotas:
|
|
manila:
|
|
share_networks: -1
|
|
users:
|
|
tenants: 2
|
|
users_per_tenant: 1
|
|
sla:
|
|
failure_rate:
|
|
max: 0
|
|
|
|
ManilaShares.list_share_servers:
|
|
-
|
|
args:
|
|
search_opts: {}
|
|
runner:
|
|
type: "constant"
|
|
times: 10
|
|
concurrency: 10
|
|
sla:
|
|
failure_rate:
|
|
max: 0
|
|
|
|
ManilaShares.create_security_service_and_delete:
|
|
{% for s in ("ldap", "kerberos", "active_directory") %}
|
|
-
|
|
args:
|
|
security_service_type: {{s}}
|
|
dns_ip: "fake_dns_ip"
|
|
server: "fake-server"
|
|
domain: "fake_domain"
|
|
user: "fake_user"
|
|
password: "fake_password"
|
|
name: "fake_name"
|
|
description: "fake_description"
|
|
runner:
|
|
type: "constant"
|
|
times: 10
|
|
concurrency: 10
|
|
context:
|
|
users:
|
|
tenants: 1
|
|
users_per_tenant: 1
|
|
sla:
|
|
failure_rate:
|
|
max: 0
|
|
{% endfor %}
|
|
|
|
ManilaShares.attach_security_service_to_share_network:
|
|
{% for s in ("ldap", "kerberos", "active_directory") %}
|
|
-
|
|
args:
|
|
security_service_type: {{s}}
|
|
runner:
|
|
type: "constant"
|
|
times: 10
|
|
concurrency: 10
|
|
context:
|
|
users:
|
|
tenants: 1
|
|
users_per_tenant: 1
|
|
quotas:
|
|
manila:
|
|
share_networks: -1
|
|
sla:
|
|
failure_rate:
|
|
max: 0
|
|
{% endfor %}
|