1b03b06d5713589825165be89908b071681c937d
[integration.git] / deployment / noheat / infra-openstack / ansible / group_vars / all.yml.sample
1 ---
2 network:
3   name: &network_name "onap_ci_lab"
4   cidr: "192.168.1.0/24"
5   dns_servers:
6     # - x.x.x.x
7     # - y.y.y.y
8
9 keypair:
10   name: &keypair_name "onap_ci_lab"
11
12 securitygroup:
13   name: &securitygroup_name "onap_ci_lab"
14   remote_ip_prefix:
15     - "172.24.4.0/24"
16     - "192.168.1.0/24"
17   local_ip_prefix:
18     - "192.168.1.0/24"
19
20 image:
21   name: &image_name "Ubuntu_18.04"
22   user: "ubuntu"
23
24 operation:
25   name: "operation0"
26   inventory: "~/inventory.ini"
27   hosts:
28     - name: "operator0"
29       image: *image_name
30       flavor: "m1.tiny"
31       keypair: *keypair_name
32       network: *network_name
33       securitygroup: *securitygroup_name
34       boot_from_volume: true
35       terminate_volume: true
36       volume_size: 5
37
38 cluster:
39   name: "cluster0"
40   hosts:
41     - name: "worker0"
42       image: *image_name
43       flavor: "m1.tiny"
44       keypair: *keypair_name
45       network: *network_name
46       securitygroup: *securitygroup_name
47       boot_from_volume: true
48       terminate_volume: true
49       volume_size: 5