Merge "Test case description and configuration file for yardstick_tc089"
[yardstick.git] / etc / infra / infra_deploy_one.yaml.sample
1 nodes:
2   - name: Deployment, Controller and Compute single VM
3     openstack_node: controller  # if no compute nodes are defined means a standalone deployment
4     hostname: allinone
5     interfaces:
6       - network: management
7         ip: 192.168.1.21
8         netmask: 255.255.255.0
9       - network: traffic
10         ip: 192.20.1.21
11         netmask: 255.255.255.0
12     user: ubuntu
13     password: password
14     image: /tmp/image_one.img
15     disk: 22000
16     ram: 14000
17     vcpus: 12
18
19   - name: Jump host
20     hostname: yardstickvm
21     interfaces:
22       - network: management
23         ip: 192.168.1.22
24         netmask: 255.255.255.0
25       - network: traffic
26         ip: 192.20.1.22
27         netmask: 255.255.255.0
28     user: ubuntu
29     password: password
30     image: /tmp/image_yardstick.img
31     disk: 22000
32     ram: 10000
33     vcpus: 4
34
35 networks:
36   - name: management
37     default_gateway: True
38     host_ip: 192.168.1.1
39     netmask: 255.255.255.0
40
41   - name: traffic
42     default_gateway: False  # This parameter is not mandatory, default value: False
43     host_ip: 192.20.1.1
44     netmask: 255.255.255.0
45     dhcp_ip_start: 192.20.1.200
46     dhcp_ip_stop: 192.20.1.250