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