browbeat/rally/rally-plugins/netcreate-boot/netcreate_boot.yml
Joe 5d84bdc3f2 Add Rally Plugins
Add Rally Plugin to our automation.

+ Restructure directory
+ Patch some of the code
+ Patched up lib/Rally, still need to finish a couple of changes
+ Added Plugin path to config
+ Remove debugging
+ Update the yml files for plugins

Change-Id: I6059ef55ecce1bd32301bdf8ad386d993bbdf757
2016-03-17 12:38:28 -04:00

32 lines
781 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 %}
---
NeutronPlugin.create_network_nova_boot:
-
args:
flavor:
name: '{{flavor_name}}'
image:
name: '{{image_name}}'
network_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}}