4adfe7074b
This Plugin creates a security group and creates a port with that security group and also deletes them. This well help us do control plane performance testing of new firewall implementations, etc. Change-Id: I7d5c7713388a0000fef73aaadc8c79a1dd0950c1
27 lines
681 B
YAML
27 lines
681 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 %}
|
|
---
|
|
BrowbeatPlugin.neutron_securitygroup_port:
|
|
-
|
|
args:
|
|
network_create_args: {}
|
|
runner:
|
|
concurrency: {{concurrency}}
|
|
times: {{times}}
|
|
type: "constant"
|
|
context:
|
|
users:
|
|
tenants: 1
|
|
users_per_tenant: 8
|
|
quotas:
|
|
neutron:
|
|
network: -1
|
|
port: -1
|
|
security_group: -1
|
|
sla:
|
|
max_avg_duration: {{sla_max_avg_duration}}
|
|
max_seconds_per_iteration: {{sla_max_seconds}}
|
|
failure_rate:
|
|
max: {{sla_max_failure}}
|