Advertisement
Guest User

Untitled

a guest
Aug 4th, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.59 KB | None | 0 0
  1. ---
  2.  
  3. cidr_networks:
  4. container: 172.30.236.0/22
  5. tunnel: 172.30.240.0/22
  6. storage: 172.30.244.0/22
  7.  
  8.  
  9. used_ips:
  10. - "172.29.236.1,172.29.236.50"
  11. - "172.29.240.1,172.29.240.50"
  12. - "172.29.244.1,172.29.244.50"
  13. - "172.29.248.1,172.29.248.50"
  14.  
  15.  
  16. global_overrides:
  17. internal_lb_vip_address: 172.29.236.12
  18. #
  19. # The below domain name must resolve to an IP address
  20. # in the CIDR specified in haproxy_keepalived_external_vip_cidr.
  21. # If using different protocols (https/http) for the public/internal
  22. # endpoints the two addresses must be different.
  23. #
  24. external_lb_vip_address: 192.168.56.104
  25. tunnel_bridge: "br-vxlan"
  26. management_bridge: "br-mgmt"
  27. provider_networks:
  28. - network:
  29. container_bridge: "br-mgmt"
  30. container_type: "veth"
  31. container_interface: "eth1"
  32. ip_from_q: "container"
  33. type: "raw"
  34. group_binds:
  35. - all_containers
  36. - hosts
  37. is_container_address: true
  38. is_ssh_address: true
  39. - network:
  40. container_bridge: "br-vxlan"
  41. container_type: "veth"
  42. container_interface: "eth10"
  43. ip_from_q: "tunnel"
  44. type: "vxlan"
  45. range: "1:1000"
  46. net_name: "vxlan"
  47. group_binds:
  48. - neutron_linuxbridge_agent
  49. - network:
  50. container_bridge: "br-vlan"
  51. container_type: "veth"
  52. container_interface: "eth12"
  53. host_bind_override: "eth12"
  54. type: "flat"
  55. net_name: "flat"
  56. group_binds:
  57. - neutron_linuxbridge_agent
  58. - network:
  59. container_bridge: "br-vlan"
  60. container_type: "veth"
  61. container_interface: "eth11"
  62. type: "vlan"
  63. range: "1:1"
  64. net_name: "vlan"
  65. group_binds:
  66. - neutron_linuxbridge_agent
  67. - network:
  68. container_bridge: "br-storage"
  69. container_type: "veth"
  70. container_interface: "eth2"
  71. ip_from_q: "storage"
  72. type: "raw"
  73. group_binds:
  74. - glance_api
  75. - cinder_api
  76. - cinder_volume
  77. - nova_compute
  78.  
  79.  
  80. # galera, memcache, rabbitmq, utility
  81. shared-infra_hosts:
  82. infra1:
  83. ip: 172.29.236.12
  84.  
  85.  
  86. # repository (apt cache, python packages, etc)
  87. repo-infra_hosts:
  88. infra1:
  89. ip: 172.29.236.12
  90.  
  91.  
  92. os-infra_hosts:
  93. infra1:
  94. ip: 172.29.236.12
  95.  
  96.  
  97. # keystone
  98. identity_hosts:
  99. infra1:
  100. ip: 172.29.236.12
  101.  
  102. ##### MISSING
  103.  
  104. # glance
  105. image_hosts:
  106. infra1:
  107. ip: 172.29.236.12
  108.  
  109. # nova api, conductor, etc services
  110. compute-infra_hosts:
  111. infra1:
  112. ip: 172.29.236.12
  113.  
  114. # heat
  115. orchestration_hosts:
  116. infra1:
  117. ip: 172.29.236.12
  118.  
  119. # horizon
  120. dashboard_hosts:
  121. infra1:
  122. ip: 172.29.236.12
  123.  
  124. ##### END MISSING
  125.  
  126.  
  127. # neutron server, agents (L3, etc)
  128. network_hosts:
  129. infra1:
  130. ip: 172.29.236.12
  131.  
  132.  
  133. # nova hypervisors
  134. compute_hosts:
  135. infra1:
  136. ip: 172.29.236.12
  137.  
  138. # cinder api services
  139. storage-infra_hosts:
  140. infra1:
  141. ip: 172.29.236.12
  142.  
  143.  
  144. # cinder storage host (LVM-backed)
  145. storage_hosts:
  146. storage:
  147. ip: 172.29.236.13
  148. container_vars:
  149. cinder_backends:
  150. limit_container_types: cinder_volume
  151. lvm:
  152. volume_group: cinder-volumes
  153. volume_driver: cinder.volume.drivers.lvm.LVMVolumeDriver
  154. volume_backend_name: LVM_iSCSI
  155. iscsi_ip_address: "172.29.244.13"
  156.  
  157.  
  158.  
  159. log_hosts:
  160. storage:
  161. ip: 172.29.236.13
  162.  
  163. # load balancer
  164. # Ideally the load balancer should not use the Infrastructure hosts.
  165. # Dedicated hardware is best for improved performance and security.
  166. haproxy_hosts:
  167. infra1:
  168. ip: 172.29.236.12
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement