5af24aba4c
After disabling all OpenStack services [1] for manila/rally CI jobs, we need to remove every usage of context that is related to disabled projects. In current case, creation of Neutron networks became redundant. So, remove it from scenarios. Also, use proper predefined share types for each type of a job. [1] I753a648349f7a3b8ede3ee714657638f4db68ec5 Depends-On: I7278a897bb89f0562e1eda449b725d965cb10566 Change-Id: I160740c7674e6ee79daea6e840acd6e3a47d8a75
61 lines
1.2 KiB
YAML
61 lines
1.2 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
|
|
|
|
{% for s in ("create_and_delete_share", "create_and_list_share") %}
|
|
ManilaShares.{{s}}:
|
|
-
|
|
args:
|
|
share_proto: "nfs"
|
|
size: 1
|
|
share_type: "dhss_false"
|
|
min_sleep: 1
|
|
max_sleep: 2
|
|
runner:
|
|
type: "constant"
|
|
times: 4
|
|
concurrency: 4
|
|
context:
|
|
quotas:
|
|
manila:
|
|
shares: -1
|
|
gigabytes: -1
|
|
users:
|
|
tenants: 2
|
|
users_per_tenant: 1
|
|
sla:
|
|
failure_rate:
|
|
max: 0
|
|
{% endfor %}
|