Merge "Also match config volumes for /var/lib/config-data/puppet-generated/" into...
[apex-tripleo-heat-templates.git] / environments / network-environment-v6.yaml
1 #This file is an example of an environment file for defining the isolated
2 #networks and related parameters.
3 resource_registry:
4   # Network Interface templates to use (these files must exist)
5   OS::TripleO::BlockStorage::Net::SoftwareConfig:
6     ../network/config/single-nic-vlans/cinder-storage.yaml
7   OS::TripleO::Compute::Net::SoftwareConfig:
8     ../network/config/single-nic-vlans/compute.yaml
9   OS::TripleO::Controller::Net::SoftwareConfig:
10     ../network/config/single-nic-vlans/controller.yaml
11   OS::TripleO::ObjectStorage::Net::SoftwareConfig:
12     ../network/config/single-nic-vlans/swift-storage.yaml
13   OS::TripleO::CephStorage::Net::SoftwareConfig:
14     ../network/config/single-nic-vlans/ceph-storage.yaml
15
16 parameter_defaults:
17   # This section is where deployment-specific configuration is done
18   # CIDR subnet mask length for provisioning network
19   ControlPlaneSubnetCidr: '24'
20   # Gateway router for the provisioning network (or Undercloud IP)
21   ControlPlaneDefaultRoute: 192.168.24.254
22   EC2MetadataIp: 192.168.24.1  # Generally the IP of the Undercloud
23   # Customize the IP subnets to match the local environment
24   InternalApiNetCidr: 'fd00:fd00:fd00:2000::/64'
25   StorageNetCidr: 'fd00:fd00:fd00:3000::/64'
26   StorageMgmtNetCidr: 'fd00:fd00:fd00:4000::/64'
27   # Tenant tunneling network is IPv4 until IPv6 is fully supported
28   TenantNetCidr: 172.16.0.0/24
29   ExternalNetCidr: '2001:db8:fd00:1000::/64'
30   # Customize the VLAN IDs to match the local environment
31   InternalApiNetworkVlanID: 20
32   StorageNetworkVlanID: 30
33   StorageMgmtNetworkVlanID: 40
34   TenantNetworkVlanID: 50
35   ExternalNetworkVlanID: 10
36   # Customize the IP ranges on each network to use for static IPs and VIPs
37   InternalApiAllocationPools: [{'start': 'fd00:fd00:fd00:2000::10', 'end': 'fd00:fd00:fd00:2000:ffff:ffff:ffff:fffe'}]
38   StorageAllocationPools: [{'start': 'fd00:fd00:fd00:3000::10', 'end': 'fd00:fd00:fd00:3000:ffff:ffff:ffff:fffe'}]
39   StorageMgmtAllocationPools: [{'start': 'fd00:fd00:fd00:4000::10', 'end': 'fd00:fd00:fd00:4000:ffff:ffff:ffff:fffe'}]
40   TenantAllocationPools: [{'start': '172.16.0.10', 'end': '172.16.0.200'}]
41   # Leave room if the external network is also used for floating IPs
42   ExternalAllocationPools: [{'start': '2001:db8:fd00:1000::10', 'end': '2001:db8:fd00:1000:ffff:ffff:ffff:fffe'}]
43   # Gateway router for the external network
44   ExternalInterfaceDefaultRoute: '2001:db8:fd00:1000::1'
45   # Uncomment if using the Management Network (see network-management-v6.yaml)
46   # ManagementNetCidr: 'fd00:fd00:fd00:6000::/64'
47   # ManagementAllocationPools: [{'start': 'fd00:fd00:fd00:6000::10', 'end': 'fd00:fd00:fd00:6000:ffff:ffff:ffff:fffe'}]
48   # Use either this parameter or ControlPlaneDefaultRoute in the NIC templates
49   # ManagementInterfaceDefaultRoute: 'fd00:fd00:fd00:6000::1'
50   # Define the DNS servers (maximum 2) for the overcloud nodes
51   DnsServers: ["8.8.8.8","8.8.4.4"]
52   # List of Neutron network types for tenant networks (will be used in order)
53   NeutronNetworkType: 'vxlan,vlan'
54   # The tunnel type for the tenant network (vxlan or gre). Set to '' to disable tunneling.
55   NeutronTunnelTypes: 'vxlan'
56   # Neutron VLAN ranges per network, for example 'datacentre:1:499,tenant:500:1000':
57   NeutronNetworkVLANRanges: 'datacentre:1:1000'
58   # Customize bonding options, e.g. "mode=4 lacp_rate=1 updelay=1000 miimon=100"
59   # for Linux bonds w/LACP, or "bond_mode=active-backup" for OVS active/backup.
60   BondInterfaceOvsOptions: "bond_mode=active-backup"