[CICDANSIBLE] Add availability_zone Heat stack parameter
[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 #Name of openstack availability zone to use for instances
30 availability_zone: "nova"
31 #Whether to use a volume for /dockerdata-nfs or to use ephemeral disk.
32 #True by default, most openstack providers offer ssd volumes probably.
33 use_volume_for_nfs: true
34 #Cidr of private subnet where instances are connected.
35 subnet_cidr: "10.1.0.0/16"
36 #Start of dhcp allocation range for subnet.
37 subnet_range_start: "10.1.0.4"
38 #Subnet allocation range end.
39 subnet_range_end: "10.1.0.254"
40 #Ip address of router used as a gateway to external network.
41 router_addr: "10.1.0.1"
42 #A list of dns resolvers for all instances
43 dns_nameservers: []
44 #Cidr of external subnet to allow access to, 0.0.0.0/0 means allow internet access.
45 # For offline deployment it is recommended to set this to a cidr of intranet.
46 external_subnet_cidr: ""
47 #Address of cicd docker registry.
48 cicd_docker_registry: ""
49 #Address of custom docker registry mirror
50 docker_registry_mirror: ""
51 #Number of nodes to deploy.
52 num_nodes: "4"
53 #Stack name to deploy on heat.
54 stack_name: "installer-test"
55 #Address of resource server with packages.
56 resource_host: ""
57 #Directory with all onap packages (on resource host).
58 resources_dir: ""
59 #Filename of software package.
60 resources_sw_filename: "sw_package.tar"
61 #Filename of binary resources.
62 resources_filename: "resources_package.tar"
63 #Filename of auxiliary resources.
64 aux_resources_filename: "aux_package.tar"
65 #Whether to deploy app.
66 #Setting it to false will skip deployment, but instance preconfiguration
67 #will still be done and sw resources uploaded to the installer host.
68 install_app: true
69 # This is a string containing base64-encoded yaml blob passed to offline installer via -e option.
70 # You can use it to override any variable in offline installer except those
71 # supported directly by cicdansible.
72 application_config: ''
73 # Id of the network for demo usecases
74 demo_network_id: ""
75 # Size of docker storage volumes on nodes
76 docker_storage_size: 60