Adding the README.md for the Rally Plugin

This commit is contained in:
Joe Talerico 2015-11-18 20:08:39 -05:00
parent 4e79375eb4
commit e67fd0b72d
1 changed files with 37 additions and 0 deletions

37
rally-plugins/README.md Normal file
View File

@ -0,0 +1,37 @@
# Rally Plugins Browbeat can use
## Current plugins
### neutron-netcreate_nova-boot
Rally plugin that utilizes both Neutron and Nova scneario
utilities. This Rally plugin will create a network then
launch a guest within that network.
#### Example json
'''
{% set flavor_name = flavor_name or "m1.flavorname" %}
{
"NeutronPlugin.create_network_nova_boot": [
{
"args": {
"flavor": {
"name": "{{flavor_name}}"
},
"image": {
"name": "image_name"
},
"network_create_args": {},
},
"runner": {
"type": "serial",
"times": 5,
},
"context": {
"users": {
"tenants": 1,
"users_per_tenant": 1
},
},
}
]
}
'''