Merge "Add pod.yaml files for Apex"
[yardstick.git] / etc / infra / infra_deploy_multi.yaml.sample
1 nodes:
2   - name: Deployment and Controller node number 1 VM
3     openstack_node: controller
4     hostname: control-01
5     interfaces:
6       - network: management
7         ip: 192.168.1.10
8         netmask: 255.255.255.0
9       - network: traffic
10         ip: 192.20.1.10
11         netmask: 255.255.255.0
12     user: ubuntu
13     password: password
14     image: /tmp/image_cntrl_1.img
15     disk: 13000
16     ram: 9000
17     vcpus: 4
18
19   - name: Controller node number 2 VM
20     openstack_node: controller
21     hostname: control-02
22     interfaces:
23       - network: management
24         ip: 192.168.1.11
25         netmask: 255.255.255.0
26       - network: traffic
27         ip: 192.20.1.11
28         netmask: 255.255.255.0
29     user: ubuntu
30     password: password
31     image: /tmp/image_cntrl_2.img
32     disk: 11000
33     ram: 6000
34     vcpus: 2
35
36   - name: Compute node number 1 VM
37     openstack_node: compute
38     hostname: compute-01
39     interfaces:
40       - network: management
41         ip: 192.168.1.12
42         netmask: 255.255.255.0
43       - network: traffic
44         ip: 192.20.1.12
45         netmask: 255.255.255.0
46     user: ubuntu
47     password: password
48     image: /tmp/image_comp_1.img
49     disk: 30000
50     ram: 16000
51     vcpus: 12
52
53   - name: Compute node number 2 VM
54     openstack_node: compute
55     hostname: compute-02
56     interfaces:
57       - network: management
58         ip: 192.168.1.13
59         netmask: 255.255.255.0
60       - network: traffic
61         ip: 192.20.1.13
62         netmask: 255.255.255.0
63     user: ubuntu
64     password: password
65     image: /tmp/image_comp_2.img
66     disk: 12000
67     ram: 6000
68     vcpus: 4
69
70   - name: Jump host
71     hostname: yardstickvm
72     interfaces:
73       - network: management
74         ip: 192.168.1.14
75         netmask: 255.255.255.0
76       - network: traffic
77         ip: 192.20.1.14
78         netmask: 255.255.255.0
79     user: ubuntu
80     password: password
81     image: /tmp/image_yardstick.img
82     disk: 28000
83     ram: 12000
84     vcpus: 4
85
86 networks:
87   - name: management
88     default_gateway: True
89     host_ip: 192.168.1.1
90     netmask: 255.255.255.0
91
92   - name: traffic
93     default_gateway: False  # This parameter is not mandatory, default value: False
94     host_ip: 192.20.1.1
95     netmask: 255.255.255.0
96     dhcp_ip_start: 192.20.1.200
97     dhcp_ip_stop: 192.20.1.250