b5b6681a74
Following change I1393d65ffb20b1396ff068def237418958ed3289 the ctlplane network will be 192.168.24 by default and not 192.0.2 anymore. This change removes old references left to 192.0.2 network from the overcloud templates. Change-Id: I1986721d339887741038b6cd050a46171a4d8022
60 lines
3.0 KiB
YAML
60 lines
3.0 KiB
YAML
#This file is an example of an environment file for defining the isolated
|
|
#networks and related parameters.
|
|
resource_registry:
|
|
# Network Interface templates to use (these files must exist)
|
|
OS::TripleO::BlockStorage::Net::SoftwareConfig:
|
|
../network/config/single-nic-vlans/cinder-storage.yaml
|
|
OS::TripleO::Compute::Net::SoftwareConfig:
|
|
../network/config/single-nic-vlans/compute.yaml
|
|
OS::TripleO::Controller::Net::SoftwareConfig:
|
|
../network/config/single-nic-vlans/controller.yaml
|
|
OS::TripleO::ObjectStorage::Net::SoftwareConfig:
|
|
../network/config/single-nic-vlans/swift-storage.yaml
|
|
OS::TripleO::CephStorage::Net::SoftwareConfig:
|
|
../network/config/single-nic-vlans/ceph-storage.yaml
|
|
|
|
parameter_defaults:
|
|
# This section is where deployment-specific configuration is done
|
|
# CIDR subnet mask length for provisioning network
|
|
ControlPlaneSubnetCidr: '24'
|
|
# Gateway router for the provisioning network (or Undercloud IP)
|
|
ControlPlaneDefaultRoute: 192.168.24.254
|
|
EC2MetadataIp: 192.168.24.1 # Generally the IP of the Undercloud
|
|
# Customize the IP subnets to match the local environment
|
|
InternalApiNetCidr: 172.17.0.0/24
|
|
StorageNetCidr: 172.18.0.0/24
|
|
StorageMgmtNetCidr: 172.19.0.0/24
|
|
TenantNetCidr: 172.16.0.0/24
|
|
ExternalNetCidr: 10.0.0.0/24
|
|
# Customize the VLAN IDs to match the local environment
|
|
InternalApiNetworkVlanID: 20
|
|
StorageNetworkVlanID: 30
|
|
StorageMgmtNetworkVlanID: 40
|
|
TenantNetworkVlanID: 50
|
|
ExternalNetworkVlanID: 10
|
|
# Customize the IP ranges on each network to use for static IPs and VIPs
|
|
InternalApiAllocationPools: [{'start': '172.17.0.10', 'end': '172.17.0.200'}]
|
|
StorageAllocationPools: [{'start': '172.18.0.10', 'end': '172.18.0.200'}]
|
|
StorageMgmtAllocationPools: [{'start': '172.19.0.10', 'end': '172.19.0.200'}]
|
|
TenantAllocationPools: [{'start': '172.16.0.10', 'end': '172.16.0.200'}]
|
|
# Leave room if the external network is also used for floating IPs
|
|
ExternalAllocationPools: [{'start': '10.0.0.10', 'end': '10.0.0.50'}]
|
|
# Gateway router for the external network
|
|
ExternalInterfaceDefaultRoute: 10.0.0.1
|
|
# Uncomment if using the Management Network (see network-management.yaml)
|
|
# ManagementNetCidr: 10.0.1.0/24
|
|
# ManagementAllocationPools: [{'start': '10.0.1.10', 'end': '10.0.1.50'}]
|
|
# Use either this parameter or ControlPlaneDefaultRoute in the NIC templates
|
|
# ManagementInterfaceDefaultRoute: 10.0.1.1
|
|
# Define the DNS servers (maximum 2) for the overcloud nodes
|
|
DnsServers: ["8.8.8.8","8.8.4.4"]
|
|
# List of Neutron network types for tenant networks (will be used in order)
|
|
NeutronNetworkType: 'vxlan,vlan'
|
|
# The tunnel type for the tenant network (vxlan or gre). Set to '' to disable tunneling.
|
|
NeutronTunnelTypes: 'vxlan'
|
|
# Neutron VLAN ranges per network, for example 'datacentre:1:499,tenant:500:1000':
|
|
NeutronNetworkVLANRanges: 'datacentre:1:1000'
|
|
# Customize bonding options, e.g. "mode=4 lacp_rate=1 updelay=1000 miimon=100"
|
|
# for Linux bonds w/LACP, or "bond_mode=active-backup" for OVS active/backup.
|
|
BondInterfaceOvsOptions: "bond_mode=active-backup"
|