Files
rally-openstack/samples/tasks/scenarios/vm/boot-runcommand-delete.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

47 lines
1.4 KiB
JSON

{% set flavor_name = flavor_name or "m1.tiny" %}
{
"version": 2,
"title": "Unknown Boot Runcommand Delete",
"description": "Test boot runcommand delete operations",
"subtasks": [
{
"title": "Unknown boot runcommand delete",
"scenario": {
"VMTasks.boot_runcommand_delete": {
"flavor": {
"name": "{{flavor_name}}"
},
"image": {
"name": "^cirros.*-disk$"
},
"floating_network": "public",
"force_delete": false,
"command": {
"interpreter": "/bin/sh",
"script_file": "samples/tasks/support/instance_test.sh"
},
"username": "cirros"
}
},
"runner": {
"constant": {
"times": 10,
"concurrency": 2
}
},
"contexts": {
"users": {
"tenants": 3,
"users_per_tenant": 2
},
"network": {}
},
"sla": {
"failure_rate": {
"max": 0
}
}
}
]
}