![akrzos](/assets/img/avatar_default.png)
* Rally context to insert delay for specific scenarios * Boot a persisting instance with NIC and a volume * Boot a persisting instance with NIC and associate a FIP * Boot a persisting instance with a NIC and a volume and associate a FIP Change-Id: I3735495148ef88e69fc13be23fb53f29c184ed87
37 lines
1001 B
YAML
37 lines
1001 B
YAML
{% set image_name = image_name or 'cirros' %}
|
|
{% set flavor_name = flavor_name or 'm1.xtiny' %}
|
|
{% set setup_delay = setup_delay or 0 %}
|
|
{% set cleanup_delay = cleanup_delay or 0 %}
|
|
{% 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 %}
|
|
---
|
|
BrowbeatNova.nova_boot_persist:
|
|
-
|
|
args:
|
|
flavor:
|
|
name: '{{flavor_name}}'
|
|
image:
|
|
name: '{{image_name}}'
|
|
runner:
|
|
concurrency: {{concurrency}}
|
|
times: {{times}}
|
|
type: 'constant'
|
|
context:
|
|
browbeat_delay:
|
|
setup_delay: {{setup_delay}}
|
|
cleanup_delay: {{cleanup_delay}}
|
|
users:
|
|
tenants: 1
|
|
users_per_tenant: 8
|
|
quotas:
|
|
nova:
|
|
instances: -1
|
|
cores: -1
|
|
ram: -1
|
|
sla:
|
|
max_avg_duration: {{sla_max_avg_duration}}
|
|
max_seconds_per_iteration: {{sla_max_seconds}}
|
|
failure_rate:
|
|
max: {{sla_max_failure}}
|