Advertisement
SanabriaRusso

Untitled

May 21st, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 KB | None | 0 0
  1. ---
  2. cidr_networks:
  3. container: 172.10.10.0/24
  4. tunnel: 172.10.30.0/24
  5. storage: 172.10.20.0/24
  6.  
  7. used_ips:
  8. - "172.10.10.1,172.10.10.21"
  9. - "172.10.20.1,172.10.20.20"
  10. - "172.10.30.1,172.10.30.20"
  11.  
  12. global_overrides:
  13. # The internal and external VIP should be different IPs, however they
  14. # do not need to be on separate networks.
  15. external_lb_vip_address: 10.1.14.10
  16. internal_lb_vip_address: 172.10.10.2
  17. management_bridge: "br-mgmt"
  18. provider_networks:
  19. - network:
  20. container_bridge: "br-mgmt"
  21. container_type: "veth"
  22. container_interface: "eth1"
  23. ip_from_q: "container"
  24. type: "raw"
  25. group_binds:
  26. - all_containers
  27. - hosts
  28. is_container_address: true
  29. - network:
  30. container_bridge: "br-vxlan"
  31. container_type: "veth"
  32. container_interface: "eth10"
  33. ip_from_q: "tunnel"
  34. type: "vxlan"
  35. range: "1:1000"
  36. net_name: "vxlan"
  37. group_binds:
  38. - neutron_linuxbridge_agent
  39. - network:
  40. container_bridge: "br-vlan"
  41. container_type: "veth"
  42. container_interface: "eth12"
  43. host_bind_override: "eth12"
  44. type: "flat"
  45. net_name: "flat"
  46. group_binds:
  47. - neutron_linuxbridge_agent
  48. - network:
  49. container_bridge: "br-vlan"
  50. container_type: "veth"
  51. container_interface: "eth11"
  52. type: "vlan"
  53. range: "140:250,301:400"
  54. net_name: "vlan"
  55. group_binds:
  56. - neutron_linuxbridge_agent
  57. - network:
  58. container_bridge: "br-storage"
  59. container_type: "veth"
  60. container_interface: "eth2"
  61. ip_from_q: "storage"
  62. type: "raw"
  63. group_binds:
  64. - glance_api
  65. - cinder_api
  66. - cinder_volume
  67. - nova_compute
  68.  
  69. ###
  70. ### Infrastructure
  71. ###
  72.  
  73. # galera, memcache, rabbitmq, utility
  74. shared-infra_hosts:
  75. infra1:
  76. ip: 172.10.10.2
  77.  
  78. # repository (apt cache, python packages, etc)
  79. repo-infra_hosts:
  80. infra1:
  81. ip: 172.10.10.2
  82.  
  83. # load balancer
  84. haproxy_hosts:
  85. infra1:
  86. ip: 172.10.10.2
  87.  
  88. ###
  89. ### OpenStack
  90. ###
  91.  
  92. # keystone
  93. identity_hosts:
  94. infra1:
  95. ip: 172.10.10.2
  96.  
  97. # cinder api services
  98. storage-infra_hosts:
  99. infra1:
  100. ip: 172.10.10.2
  101.  
  102. # glance
  103. image_hosts:
  104. infra1:
  105. ip: 172.10.10.2
  106.  
  107. # nova api, conductor, etc services
  108. compute-infra_hosts:
  109. infra1:
  110. ip: 172.10.10.2
  111.  
  112. # heat
  113. orchestration_hosts:
  114. infra1:
  115. ip: 172.10.10.2
  116.  
  117. # horizon
  118. dashboard_hosts:
  119. infra1:
  120. ip: 172.10.10.2
  121.  
  122. # neutron server, agents (L3, etc)
  123. network_hosts:
  124. infra1:
  125. ip: 172.10.10.2
  126.  
  127. # nova hypervisors
  128. compute_hosts:
  129. compute1:
  130. ip: 172.10.10.4
  131.  
  132. # cinder storage host (LVM-backed)
  133. storage_hosts:
  134. storage1:
  135. ip: 172.10.10.6
  136. container_vars:
  137. cinder_backends:
  138. limit_container_types: cinder_volume
  139. lvm:
  140. volume_group: cinder-volumes
  141. volume_driver: cinder.volume.drivers.lvm.LVMVolumeDriver
  142. volume_backend_name: LVM_iSCSI
  143. iscsi_ip_address: "172.10.20.3"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement