e6c00cdec5
This patch lets user to define the router_create_args throguh the browbeat-config file. This way things like setting a router to be distributed or legacy can be done. Change-Id: I6868bf51169a3dbafea85a29535a59beac6d81a3
34 lines
1.0 KiB
YAML
34 lines
1.0 KiB
YAML
{% set subnets_per_network = subnets_per_network or 2 %}
|
|
{% set router_create_args = router_create_args or {} %}
|
|
{% 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 %}
|
|
---
|
|
NeutronNetworks.create_and_list_routers:
|
|
-
|
|
args:
|
|
network_create_args: ""
|
|
subnet_create_args: ""
|
|
subnet_cidr_start: "1.1.0.0/30"
|
|
subnets_per_network: {{subnets_per_network}}
|
|
router_create_args: {{ router_create_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}}
|