Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.65 KB | None | 0 0
  1. ---
  2. # container networks, safe to leave these as defaults
  3. cidr_networks:
  4. container: 10.4.0.0/22
  5. tunnel: 10.5.0.0/22
  6. storage: 10.6.0.0/22
  7.  
  8. # IPs from your tunnel and container networks that you want to reserve for the hosts
  9. used_ips:
  10. - "10.4.0.1-10.4.0.30"
  11. - "10.5.0.1-10.5.0.30"
  12. - "10.6.0.1-10.6.0.30"
  13. - "10.7.0.1-10.7.0.30"
  14.  
  15. global_overrides:
  16. internal_lb_vip_address: 10.4.0.100
  17. # your external VIP you want to use for HAPROXY
  18. external_lb_vip_address: 10.1.3.223
  19. management_bridge: "br-mgmt"
  20. tunnel_bridge: "br-tun"
  21.  
  22. provider_networks:
  23. # container network
  24. - network:
  25. group_binds:
  26. - all_containers
  27. - hosts
  28. type: "raw"
  29. container_bridge: "br-mgmt"
  30. container_interface: "eth0"
  31. container_type: "veth"
  32. ip_from_q: "container"
  33. is_container_address: true
  34. is_ssh_address: true
  35. # vxlan network
  36. - network:
  37. group_binds:
  38. - neutron_linuxbridge_agent
  39. container_bridge: "br-tun"
  40. container_type: "veth"
  41. container_interface: "eth1"
  42. ip_from_q: "tunnel"
  43. type: "vxlan"
  44. range: "1:1000"
  45. net_name: "tun"
  46. # flat network
  47. - network:
  48. group_binds:
  49. - neutron_linuxbridge_agent
  50. container_bridge: "br-vlan"
  51. container_type: "veth"
  52. container_interface: "eth4"
  53. host_bind_override: "bond1"
  54. type: "flat"
  55. net_name: "flat"
  56. # vlan network
  57. - network:
  58. group_binds:
  59. - neutron_linuxbridge_agent
  60. container_bridge: "br-vlan"
  61. container_type: "veth"
  62. container_interface: "eth4"
  63. type: "vlan"
  64. range: "1:1000"
  65. net_name: "vlan"
  66.  
  67. shared-infra_hosts:
  68. node1:
  69. ip: 10.4.0.6
  70. node2:
  71. ip: 10.4.0.7
  72. node3:
  73. ip: 10.4.0.8
  74.  
  75. repo-infra_hosts:
  76. node1:
  77. ip: 10.4.0.6
  78. node2:
  79. ip: 10.4.0.7
  80. node3:
  81. ip: 10.4.0.8
  82.  
  83. os-infra_hosts:
  84. node1:
  85. ip: 10.4.0.6
  86. node2:
  87. ip: 10.4.0.7
  88. node3:
  89. ip: 10.4.0.8
  90.  
  91. identity_hosts:
  92. node1:
  93. ip: 10.4.0.6
  94. node2:
  95. ip: 10.4.0.7
  96. node3:
  97. ip: 10.4.0.8
  98.  
  99. network_hosts:
  100. node1:
  101. ip: 10.4.0.6
  102. node2:
  103. ip: 10.4.0.7
  104. node3:
  105. ip: 10.4.0.8
  106.  
  107. compute_hosts:
  108. node1:
  109. ip: 10.4.0.6
  110. node2:
  111. ip: 10.4.0.7
  112. node3:
  113. ip: 10.4.0.8
  114.  
  115. storage-infra_hosts:
  116. node1:
  117. ip: 10.4.0.6
  118. node2:
  119. ip: 10.4.0.7
  120. node3:
  121. ip: 10.4.0.8
  122.  
  123. storage_hosts:
  124. node3:
  125. ip: 10.4.0.8
  126.  
  127. log_hosts:
  128. node3:
  129. ip: 10.4.0.8
  130.  
  131. haproxy_hosts:
  132. node1:
  133. ip: 10.4.0.6
  134. node2:
  135. ip: 10.4.0.7
  136. node3:
  137. ip: 10.4.0.8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement