Advertisement
DekayEU

Untitled

Apr 10th, 2018
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.13 KB | None | 0 0
  1. resource_registry:
  2.   OS::TripleO::BlockStorage::Net::SoftwareConfig: /home/stack/nic-configs/all-vlans.yaml
  3.   OS::TripleO::Compute::Net::SoftwareConfig: /home/stack/nic-configs/all-vlans.yaml
  4.   OS::TripleO::Controller::Net::SoftwareConfig: /home/stack/nic-configs/all-vlans.yaml
  5.   OS::TripleO::ObjectStorage::Net::SoftwareConfig: /home/stack/nic-configs/all-vlans.yaml
  6.   OS::TripleO::CephStorage::Net::SoftwareConfig: /home/stack/nic-configs/all-vlans.yaml
  7.  
  8. parameter_defaults:
  9.  # Customize all these values to match the local environment
  10.   InternalApiNetCidr: 172.51.6.0/24
  11.   StorageNetCidr: 172.52.6.0/24
  12.   StorageMgmtNetCidr: 172.53.6.0/24
  13.   TenantNetCidr: 172.54.6.0/24
  14.   ExternalNetCidr: 10.11.12.0/24
  15.   ManagementNetCidr: 172.55.6.0/24
  16.   # CIDR subnet mask length for provisioning network
  17.   ControlPlaneSubnetCidr: '24'
  18.   ControlPlaneDefaultRoute: 172.50.6.1
  19.   InternalApiAllocationPools: [{'start': '172.51.6.11', 'end': '172.51.6.100'}]
  20.   StorageAllocationPools: [{'start': '172.52.6.11', 'end': '172.52.6.250'}]
  21.   StorageMgmtAllocationPools: [{'start': '172.53.6.11', 'end': '172.53.6.250'}]
  22.   TenantAllocationPools: [{'start': '172.54.6.11', 'end': '172.54.6.250'}]
  23.   ManagementAllocationPools: [{'start': '172.55.6.11', 'end': '172.55.6.250'}]
  24.   # Use an External allocation pool which will leave room for floating IPs
  25.   ExternalAllocationPools: [{'start': '10.11.12.11', 'end': '10.11.12.250'}]
  26.   # Set to the router gateway on the external network
  27.   ExternalInterfaceDefaultRoute: 10.11.12.1
  28.   # Gateway router for the provisioning network (or Undercloud IP)
  29.   ControlPlaneDefaultRoute: 172.50.6.1
  30.   # Generally the IP of the Undercloud
  31.   EC2MetadataIp: 172.50.6.10
  32.   # Define the DNS servers (maximum 2) for the overcloud nodes
  33.   DnsServers: ["8.8.8.8","8.8.4.4"]
  34.   InternalApiNetworkVlanID: 510
  35.   StorageNetworkVlanID: 530
  36.   StorageMgmtNetworkVlanID: 540
  37.   TenantNetworkVlanID: 520
  38.   ExternalNetworkVlanID: 500
  39.   ManagementNetworkVlanID: 560
  40.   # May set to br-ex if using floating IPs only on native VLAN on bridge br-ex
  41.   NeutronExternalNetworkBridge: "''"
  42.   NeutronNetworkType: 'vxlan,vlan'
  43.   NeutronTunnelTypes: 'vxlan'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement