[CICDANSIBLE] Change default node count to 4
[oom/offline-installer.git] / tools / cicdansible / group_vars / all.yml
1 ---
2 #General configuration, can be overridden in cmdline.
3 #Authentication/keystone url.
4 os_auth_url: ""
5 #Openstack username.
6 os_username: ""
7 #Password.
8 os_password: ""
9 #Domain name.
10 os_domain_name: "default"
11 #Project name.
12 os_project_name: ""
13 #The name or id of public network used to communicate with instances.
14 public_network: ""
15 #Floating ip address for first node instance
16 first_node_ip: ""
17 #Floating ip of infra instance.
18 infra_ip: ""
19 #Floating ip of installer.
20 installer_ip: ""
21 #Openstack flavor name for nodes.
22 node_flavor_name: ""
23 #Flavor name for infra instance.
24 infra_flavor_name: ""
25 #Flavor name for installer instance.
26 installer_flavor_name: ""
27 #Name of the image for instances.
28 image_name: ""
29 #Whether to use a volume for /dockerdata-nfs or to use ephemeral disk.
30 #True by default, most openstack providers offer ssd volumes probably.
31 use_volume_for_nfs: true
32 #Cidr of private subnet where instances are connected.
33 subnet_cidr: "10.1.0.0/16"
34 #Start of dhcp allocation range for subnet.
35 subnet_range_start: "10.1.0.4"
36 #Subnet allocation range end.
37 subnet_range_end: "10.1.0.254"
38 #Ip address of router used as a gateway to external network.
39 router_addr: "10.1.0.1"
40 #A list of dns resolvers for all instances
41 dns_nameservers: []
42 #Cidr of external subnet to allow access to, 0.0.0.0/0 means allow internet access.
43 # For offline deployment it is recommended to set this to a cidr of intranet.
44 external_subnet_cidr: ""
45 #Address of cicd docker registry.
46 cicd_docker_registry: ""
47 #Address of custom docker registry mirror
48 docker_registry_mirror: ""
49 #Number of nodes to deploy.
50 num_nodes: "4"
51 #Stack name to deploy on heat.
52 stack_name: "installer-test"
53 #Address of resource server with packages.
54 resource_host: ""
55 #Directory with all onap packages (on resource host).
56 resources_dir: ""
57 #Filename of software package.
58 resources_sw_filename: "sw_package.tar"
59 #Filename of binary resources.
60 resources_filename: "resources_package.tar"
61 #Filename of auxiliary resources.
62 aux_resources_filename: "aux_package.tar"
63 #Whether to deploy app.
64 #Setting it to false will skip deployment, but instance preconfiguration
65 #will still be done and sw resources uploaded to the installer host.
66 install_app: true
67 # This is a string containing base64-encoded yaml blob passed to offline installer via -e option.
68 # You can use it to override any variable in offline installer except those
69 # supported directly by cicdansible.
70 application_config: ''
71 # Id of the network for demo usecases
72 demo_network_id: ""