aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/noheat/infra-openstack/ansible/group_vars/all.yml.sample
blob: 470c2b1209182b86bb8917d3f4121c15d7f58f80 (plain)
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
---
network:
  name: &network_name "onap_ci_lab"
  cidr: "192.168.1.0/24"

keypair:
  name: &keypair_name "onap_ci_lab"

securitygroup:
  name: &securitygroup_name "onap_ci_lab"
  remote_ip_prefix:
    - "172.24.4.0/24"
    - "192.168.1.0/24"

image:
  name: &image_name "Ubuntu_18.04"
  user: "ubuntu"

operation:
  name: "operation0"
  inventory: "~/inventory.ini"
  hosts:
    - name: "operator0"
      image: *image_name
      flavor: "m1.tiny"
      keypair: *keypair_name
      network: *network_name
      securitygroup: *securitygroup_name
      volume_size: 5

cluster:
  name: "cluster0"
  hosts:
    - name: "worker0"
      image: *image_name
      flavor: "m1.tiny"
      keypair: *keypair_name
      network: *network_name
      securitygroup: *securitygroup_name
      volume_size: 5