browbeat/rally/rally-plugins/netcreate-boot/netcreate_nova_boot_test_metadata.yml
Sanjay Chari 4102d717d2 Add quotas for netcreate_nova_boot_test_metadata
The netcreate_nova_boot_test_metadata scenario doesn't have quotas
defined, due to which it fails at scale. This patch adds quotas
for the netcreate_nova_boot_test_metadata scenario.

Change-Id: I572862b5c18c9a0b16b155c57f50fe063389573f
2022-02-07 17:23:43 +05:30

44 lines
1.2 KiB
YAML

{% set flavor_name = flavor_name or "m1.xtiny" %}
{% set image_name = image_name or "cirros" %}
{% set username = username or "cirros" %}
{% set ssh_timeout = ssh_timeout or 120 %}
{% 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.create_network_nova_boot_test_metadata:
-
args:
flavor:
name: "{{flavor_name}}"
image:
name: "{{image_name}}"
floating_network: "{{external_network}}"
username: "{{username}}"
ssh_timeout: {{ssh_timeout}}
runner:
type: "constant"
times: {{times}}
concurrency: {{concurrency}}
context:
users:
tenants: 3
users_per_tenant: 2
network: {}
quotas:
neutron:
network: -1
port: -1
router: -1
subnet: -1
floatingip: -1
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}}