File: boot-server-and-attach-interface.json

package info (click to toggle)
rally-openstack 3.0.0-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,968 kB
  • sloc: python: 53,131; sh: 262; makefile: 38
file content (43 lines) | stat: -rw-r--r-- 1,212 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{% set flavor_name = flavor_name or "m1.tiny" %}
{% set image_name = "^(cirros.*-disk|TestVM)$" %}
{
    "NovaServers.boot_server_and_attach_interface": [
        {
            "args": {
                "flavor": {
                    "name": "{{flavor_name}}"
                },
                "image": {
                    "name":  "{{image_name}}"
                },
                "network_create_args": {},
                "subnet_create_args": {},
                "subnet_cidr_start": "1.1.0.0/30",
                "boot_server_args": {}
            },
            "runner": {
                "type": "constant",
                "times": 5,
                "concurrency": 2
            },
            "context": {
                "network": {},
                "users": {
                    "tenants": 2,
                    "users_per_tenant": 2
                 },
                 "quotas": {
                     "neutron": {
                         "network": -1,
                         "subnet": -1
                      }
                 }
            },
            "sla": {
                "failure_rate": {
                    "max": 0
                }
             }
         }
    ]
}