Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2022
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.37 KB | None | 0 0
  1. ---
  2. cidr_networks:
  3. container: 172.29.236.0/22
  4. tunnel: 172.29.240.0/22
  5. storage: 172.29.244.0/22
  6.  
  7. used_ips:
  8. - "172.29.236.1,172.29.236.100"
  9. - "172.29.240.1,172.29.240.100"
  10. - "172.29.244.1,172.29.244.100"
  11.  
  12.  
  13. global_overrides:
  14. # The internal and external VIP should be different IPs, however they
  15. # do not need to be on separate networks.
  16. haproxy_keepalived_external_interface: br-mgmt
  17. haproxy_keepalived_internal_interface: br-mgmt
  18. external_lb_vip_address: 172.29.236.6/32
  19. internal_lb_vip_address: 172.29.236.7/32
  20. haproxy_keepalived_external_vip_cidr: 172.29.236.6/32
  21. haproxy_keepalived_internal_vip_cidr: 172.29.236.7/32
  22. management_bridge: "br-mgmt"
  23. provider_networks:
  24. - network:
  25. container_bridge: "br-mgmt"
  26. container_type: "veth"
  27. container_interface: "eth1"
  28. ip_from_q: "container"
  29. type: "raw"
  30. group_binds:
  31. - all_containers
  32. - hosts
  33. is_container_address: true
  34. - network:
  35. container_bridge: "br-vxlan"
  36. container_type: "veth"
  37. container_interface: "eth10"
  38. ip_from_q: "tunnel"
  39. type: "vxlan"
  40. range: "1:1000"
  41. net_name: "vxlan"
  42. group_binds:
  43. - neutron_linuxbridge_agent
  44. - network:
  45. container_bridge: "br-storage"
  46. container_type: "veth"
  47. container_interface: "eth2"
  48. ip_from_q: "storage"
  49. type: "raw"
  50. group_binds:
  51. - glance_api
  52. - cinder_api
  53. - cinder_volume
  54. - nova_compute
  55.  
  56.  
  57. ###
  58. ### Infrastructure
  59. ###
  60.  
  61. # HaProxy Host para balancear
  62. haproxy_hosts:
  63. haproxy01:
  64. ip: 172.29.236.10
  65. haproxy02:
  66. ip: 172.29.236.11
  67.  
  68. # galera, memcache, rabbitmq, utility
  69. shared-infra_hosts:
  70. controller1:
  71. ip: 172.29.236.12
  72. controller2:
  73. ip: 172.29.236.13
  74. controller3:
  75. ip: 172.29.236.14
  76.  
  77. # repository (apt cache, python packages, etc)
  78. repo-infra_hosts:
  79. controller1:
  80. ip: 172.29.236.12
  81. controller2:
  82. ip: 172.29.236.13
  83. controller3:
  84. ip: 172.29.236.14
  85.  
  86.  
  87. ###
  88. ### OpenStack
  89. ###
  90.  
  91. # keystone
  92. identity_hosts:
  93. controller1:
  94. ip: 172.29.236.12
  95. controller2:
  96. ip: 172.29.236.13
  97. controller3:
  98. ip: 172.29.236.14
  99.  
  100. # cinder api services
  101. storage-infra_hosts:
  102. controller1:
  103. ip: 172.29.236.12
  104. controller2:
  105. ip: 172.29.236.13
  106. controller3:
  107. ip: 172.29.236.14
  108.  
  109. # glance
  110. image_hosts:
  111. controller1:
  112. ip: 172.29.236.12
  113. controller2:
  114. ip: 172.29.236.13
  115. controller3:
  116. ip: 172.29.236.14
  117.  
  118. # placement
  119. placement-infra_hosts:
  120. controller1:
  121. ip: 172.29.236.12
  122. controller2:
  123. ip: 172.29.236.13
  124. controller3:
  125. ip: 172.29.236.14
  126.  
  127. # nova api, conductor, etc services
  128. compute-infra_hosts:
  129. controller1:
  130. ip: 172.29.236.12
  131. controller2:
  132. ip: 172.29.236.13
  133. controller3:
  134. ip: 172.29.236.14
  135.  
  136. # heat
  137. orchestration_hosts:
  138. controller1:
  139. ip: 172.29.236.12
  140. controller2:
  141. ip: 172.29.236.13
  142. controller3:
  143. ip: 172.29.236.14
  144.  
  145. # horizon
  146. dashboard_hosts:
  147. controller1:
  148. ip: 172.29.236.12
  149. controller2:
  150. ip: 172.29.236.13
  151. controller3:
  152. ip: 172.29.236.14
  153.  
  154. # neutron server, agents (L3, etc)
  155. network_hosts:
  156. controller1:
  157. ip: 172.29.236.12
  158. controller2:
  159. ip: 172.29.236.13
  160. controller3:
  161. ip: 172.29.236.14
  162.  
  163. # log
  164. log_hosts:
  165. log1:
  166. ip: 172.29.236.15
  167.  
  168.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement