aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/noheat/infra-openstack/ansible/group_vars/all.yml.sample
blob: f0e1b0037323de124e71b6da3894e65ee8263051 (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
41
42
---
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"
  local_ip_prefix:
    - "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