Advertisement
Guest User

Untitled

a guest
Oct 20th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. parameter_defaults:
  2. # Customize the IP subnets to match the local environment
  3. TenantNetCidr: 172.16.0.0/24
  4. InternalApiNetCidr: 172.17.0.0/24
  5. StorageNetCidr: 172.18.0.0/24
  6. StorageMgmtNetCidr: 172.19.0.0/24
  7. ExternalNetCidr: 172.20.0.0/24
  8. # Pools
  9. TenantAllocationPools: [{'start': '172.16.0.10', 'end': '172.16.0.100'}]
  10. InternalApiAllocationPools: [{'start': '172.17.0.10', 'end': '172.17.0.100'}]
  11. StorageAllocationPools: [{'start': '172.18.0.10', 'end': '172.18.0.100'}]
  12. StorageMgmtAllocationPools: [{'start': '172.19.0.10', 'end': '172.19.0.100'}]
  13. ExternalAllocationPools: [{'start': '172.20.0.10', 'end': '172.20.0.100'}]
  14. # VLans
  15. InternalApiNetworkVlanID: 1401
  16. StorageNetworkVlanID: 1402
  17. StorageMgmtNetworkVlanID: 1403
  18. TenantNetworkVlanID: 1404
  19. ExternalNetworkVlanID: 1405
  20. # Specify the gateway on the external network.
  21. ExternalInterfaceDefaultRoute: 172.20.0.254
  22. # For SSL
  23. PublicVirtualFixedIPs: [{'ip_address':'172.20.0.200'}]
  24. # ControlPlane
  25. ControlPlaneDefaultRoute: 192.168.24.1
  26. ControlPlaneSubnetCidr: "24"
  27. # Generally the IP of the Undercloud
  28. EC2MetadataIp: 192.168.24.1
  29. DnsServers: ["10.38.5.26"]
  30. # IP networks do not have to use br-ex, they can use any bridge as long as the NeutronExternalNetworkBridge is set to "''".
  31. # We will use physical_network floating as provider (and not datacentre which will still be associated to br-ex) for instances, so we will need * here
  32. # We need to define the mappings between Bridge (pysical device) and flat network
  33. NeutronExternalNetworkBridge: "''"
  34. NeutronFlatNetworks: "*"
  35. NeutronBridgeMappings: "datacentre:br-ex,floating:br-floating"
  36. # Load plugin to resolve name locally for instances
  37. NeutronPluginExtensions: "dns,qos,port_security"
  38. NeutronDnsDomain: "ci.kronosnet.org"
  39. #CloudDomain: "ci.kronosnet.org"
  40. ExtraConfig:
  41. neutron::config::dhcp_agent_config:
  42. DEFAULT/dnsmasq_local_resolv:
  43. value: true
  44. neutron::dns_domain: "ci.kronosnet.org"
  45. #############################
  46. ControllerCount: 3
  47. ComputeCount: 3
  48. # Hints for node placement
  49. ControllerSchedulerHints:
  50. 'capabilities:node': 'controller-%index%'
  51. ComputeSchedulerHints:
  52. 'capabilities:node': 'compute-%index%'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement