browbeat/rally/rally-plugins
Sindhur 06e3e3292b Adding Browbeat Infra files
Adding .gitreview file
Adding tox.ini
Adding setup.py
Adding test-requirments.txt
Fixing syntax

Change-Id: Id6d628708079440207e5f068f5f0827802f2aa14
2016-06-14 09:16:53 -04:00
..
netcreate-boot Adding Browbeat Infra files 2016-06-14 09:16:53 -04:00
netcreate-boot-ping Adding Browbeat Infra files 2016-06-14 09:16:53 -04:00
subnet-router-create Adding Browbeat Infra files 2016-06-14 09:16:53 -04:00
README.md Organize the workload runners into their own subdir 2015-12-08 13:36:27 -05:00

README.md

Rally Plugins Browbeat can use

Current plugins

neutron-netcreate_nova-boot

This Rally plugin utilizes both Neutron and Nova utilities This Rally plugin will create a network then. launch a guest within that network. This plugin will also attempt to ping the guest, to make sure connectivity works.

Assumptions

For this work, we suggest using the admin tenant. With Rally this can be done by creating a env file with the ExistingUsers field - example json . This plugin also assumes the following networking toplogy :

[ Rally Host ] --- Link to Rally tenant nework --- [ Router ] -- [ tenant networks ] -- Guests

We suggest this method, so you do not have to have a 1:1 connection:tenant network.

*** The below JSON needs updating to show that we need to pass a router t othe plugin.

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
                },
            },
        }
    ]
}