3abd54b30a
This patch adds support for providing additional arguments to create_volume in the rally task CinderVolumes.create_and_attach_volume. Currently only the size of the volume to be created can be given. Change-Id: I9c7ca61629c817ad44d2421a1fe988c75140c6e5 Closes-Bug: #1522935
41 lines
954 B
YAML
41 lines
954 B
YAML
{% set flavor_name = flavor_name or "m1.tiny" %}
|
|
{% set availability_zone = availability_zone or "nova" %}
|
|
---
|
|
CinderVolumes.create_and_attach_volume:
|
|
-
|
|
args:
|
|
size: 10
|
|
image:
|
|
name: "^cirros.*uec$"
|
|
flavor:
|
|
name: "{{flavor_name}}"
|
|
create_volume_params:
|
|
availability_zone: "{{availability_zone}}"
|
|
runner:
|
|
type: "constant"
|
|
times: 5
|
|
concurrency: 1
|
|
context:
|
|
users:
|
|
tenants: 2
|
|
users_per_tenant: 2
|
|
-
|
|
args:
|
|
size:
|
|
min: 1
|
|
max: 5
|
|
flavor:
|
|
name: "{{flavor_name}}"
|
|
image:
|
|
name: "^cirros.*uec$"
|
|
create_volume_params:
|
|
availability_zone: "{{availability_zone}}"
|
|
runner:
|
|
type: "constant"
|
|
times: 5
|
|
concurrency: 1
|
|
context:
|
|
users:
|
|
tenants: 2
|
|
users_per_tenant: 2
|