5a48323531
Adding some common scenarios for stressing glance. + Create and list images + Create and delete images + Create image and boot instances off it + List images by placing image in context Also adding a separate configuration file for glance only. Change-Id: I5327e9c65cb1b045f686e442e88b3e71f73ac5cf
26 lines
751 B
YAML
26 lines
751 B
YAML
{% set image_location = image_location or "/home/stack/cirros" %}
|
|
{% set sla_max_avg_duration = sla_max_avg_duration or 60 %}
|
|
{% set sla_max_failure = sla_max_failure or 0 %}
|
|
{% set sla_max_seconds = sla_max_seconds or 60 %}
|
|
---
|
|
GlanceImages.create_and_delete_image:
|
|
-
|
|
args:
|
|
image_location: "{{image_location}}"
|
|
container_format: "bare"
|
|
disk_format: "qcow2"
|
|
runner:
|
|
type: "constant"
|
|
times: {{times}}
|
|
concurrency: {{concurrency}}
|
|
context:
|
|
users:
|
|
tenants: 1
|
|
users_per_tenant: 1
|
|
sla:
|
|
max_avg_duration: {{sla_max_avg_duration}}
|
|
max_seconds_per_iteration: {{sla_max_seconds}}
|
|
failure_rate:
|
|
max: {{sla_max_failure}}
|
|
|