caf12231d2
Change-Id: I3c0e0e9cd325aa6c87abee244017537b7e16a595
31 lines
931 B
YAML
31 lines
931 B
YAML
{% 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 %}
|
|
{% set network_update_args = network_update_args or {} %}
|
|
{% set network_create_args = network_create_args or {} %}
|
|
---
|
|
NeutronNetworks.create_and_update_networks:
|
|
-
|
|
args:
|
|
network_create_args: {{network_create_args}}
|
|
network_update_args: {{network_update_args}}
|
|
runner:
|
|
concurrency: {{concurrency}}
|
|
times: {{times}}
|
|
type: "constant"
|
|
context:
|
|
users:
|
|
tenants: 1
|
|
users_per_tenant: 8
|
|
quotas:
|
|
neutron:
|
|
network: -1
|
|
port: -1
|
|
router: -1
|
|
subnet: -1
|
|
sla:
|
|
max_avg_duration: {{sla_max_avg_duration}}
|
|
max_seconds_per_iteration: {{sla_max_seconds}}
|
|
failure_rate:
|
|
max: {{sla_max_failure}}
|