8c84205e01
* Also add Plugin Scenario to boot persisting instances with a volume Change-Id: Ia06b3336a6856e83b76114d6ddaff2aee5bd20fa
34 lines
900 B
YAML
34 lines
900 B
YAML
{% set num_networks = num_networks or 1 %}
|
|
{% 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 %}
|
|
---
|
|
BrowbeatPlugin.PortCreateAssociate:
|
|
-
|
|
args:
|
|
network_create_args: {}
|
|
num_networks: {{num_networks}}
|
|
num_ports: {{num_ports}}
|
|
ssh_config: {{browbeat_ssh_config}}
|
|
hypervisor: {{hypervisor}}
|
|
user: {{username}}
|
|
runner:
|
|
concurrency: {{concurrency}}
|
|
times: {{times}}
|
|
type: "constant"
|
|
context:
|
|
users:
|
|
tenants: 10
|
|
users_per_tenant: 10
|
|
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}}
|