Michal Zegan | 3bf88a8 | 2019-08-22 14:55:16 +0200 | [diff] [blame] | 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: "" |
Michal Zegan | 7c1131e | 2019-09-05 18:48:18 +0200 | [diff] [blame^] | 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 |
Michal Zegan | 3bf88a8 | 2019-08-22 14:55:16 +0200 | [diff] [blame] | 32 | #Cidr of private subnet where instances are connected. |
| 33 | subnet_cidr: "10.1.0.0/24" |
| 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 | #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. |
| 42 | external_subnet_cidr: "" |
| 43 | #Address of cicd docker registry. |
| 44 | cicd_docker_registry: "" |
| 45 | #Number of nodes to deploy. |
| 46 | num_nodes: "3" |
| 47 | #Stack name to deploy on heat. |
| 48 | stack_name: "installer-test" |
| 49 | #Address of resource server with packages. |
| 50 | resource_host: "" |
| 51 | #Directory with all onap packages (on resource host). |
| 52 | resources_dir: "" |
| 53 | #Filename of software package. |
| 54 | resources_sw_filename: "sw_package.tar" |
| 55 | #Filename of binary resources. |
| 56 | resources_filename: "resources_package.tar" |
| 57 | #Filename of auxiliary resources. |
| 58 | aux_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. |
| 62 | install_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. |
| 66 | application_config: '' |