Files
rally-openstack/samples/tasks/scenarios/glance/create-image-and-boot-instances.json
Piotr Parczewski a73e803e7c Bump default Cirros version
Replace heavily outdated Cirros version with a current one. Also,
slightly increase RAM allocation in default flavors for newer
version to work.

Change-Id: Ie80340b3382cd3bed9edb14f9b9aa40eed6ab476
2022-08-05 13:40:51 +00:00

33 lines
904 B
JSON

{% set flavor_name = flavor_name or "m1.tiny" %}
{
"GlanceImages.create_image_and_boot_instances": [
{
"args": {
"image_location": "http://download.cirros-cloud.net/0.5.2/cirros-0.5.2-x86_64-disk.img",
"container_format": "bare",
"disk_format": "qcow2",
"flavor": {
"name": "{{flavor_name}}"
},
"number_instances": 2
},
"runner": {
"type": "constant",
"times": 10,
"concurrency": 2
},
"context": {
"users": {
"tenants": 3,
"users_per_tenant": 5
}
},
"sla": {
"failure_rate": {
"max": 0
}
}
}
]
}