Files
rally-openstack/samples/tasks/contexts/manila-shares.json
Andriy Kurilin c3c6de9804 Port all samples to task format v2
Signed-off-by: Andriy Kurilin <andr.kurilin@gmail.com>
Change-Id: Id9d1c0cd8f2cbc34d22f861af7c2297899aa4e4e
2025-09-17 13:15:29 +02:00

53 lines
1.8 KiB
JSON

{
"version": 2,
"title": "Task template with Manila shares context",
"description": "This sample demonstrates the usage of Manila shares context for setting up shared filesystem resources.",
"subtasks": [
{
"title": "Test with Manila shares context",
"workloads": [
{
"scenario": {
"Dummy.openstack": {
"sleep": 0.1
}
},
"runner": {
"constant": {
"times": 4,
"concurrency": 2
}
},
"contexts": {
"quotas": {
"manila": {
"shares": -1,
"gigabytes": -1,
"share_networks": -1
}
},
"users": {
"tenants": 1,
"users_per_tenant": 1
},
"manila_share_networks": {
"use_share_networks": true
},
"manila_shares": {
"shares_per_tenant": 1,
"share_proto": "NFS",
"size": 1,
"share_type": "dhss_true"
}
},
"sla": {
"failure_rate": {
"max": 0
}
}
}
]
}
]
}