Advertisement
Guest User

Untitled

a guest
Jul 13th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.23 KB | None | 0 0
  1. root@deploy:~# cat /etc/openstack_deploy/openstack_user_config.yml
  2. ---
  3. cidr_networks:
  4. container: 172.29.236.0/22
  5. tunnel: 172.29.240.0/22
  6. storage: 172.29.244.0/22
  7.  
  8. used_ips:
  9. - "172.29.236.1,172.29.236.50"
  10. - "172.29.240.1,172.29.240.50"
  11. - "172.29.244.1,172.29.244.50"
  12. - "172.29.248.1,172.29.248.50"
  13.  
  14. global_overrides:
  15. internal_lb_vip_address: 172.29.236.11
  16. external_lb_vip_address: 172.29.236.12
  17. tunnel_bridge: "br-vxlan"
  18. management_bridge: "br-mgmt"
  19. provider_networks:
  20. - network:
  21. container_bridge: "br-mgmt"
  22. container_type: "veth"
  23. container_interface: "eth1"
  24. ip_from_q: "container"
  25. type: "raw"
  26. group_binds:
  27. - all_containers
  28. - hosts
  29. is_container_address: true
  30. is_ssh_address: true
  31. - network:
  32. container_bridge: "br-vxlan"
  33. container_type: "veth"
  34. container_interface: "eth10"
  35. ip_from_q: "tunnel"
  36. type: "vxlan"
  37. range: "1:1000"
  38. net_name: "vxlan"
  39. group_binds:
  40. - neutron_linuxbridge_agent
  41. - network:
  42. container_bridge: "br-vlan"
  43. container_type: "veth"
  44. container_interface: "eth12"
  45. host_bind_override: "eth12"
  46. type: "flat"
  47. net_name: "flat"
  48. group_binds:
  49. - neutron_linuxbridge_agent
  50. - network:
  51. container_bridge: "br-vlan"
  52. container_type: "veth"
  53. container_interface: "eth11"
  54. type: "vlan"
  55. range: "1:1"
  56. net_name: "vlan"
  57. group_binds:
  58. - neutron_linuxbridge_agent
  59. - network:
  60. container_bridge: "br-storage"
  61. container_type: "veth"
  62. container_interface: "eth2"
  63. ip_from_q: "storage"
  64. type: "raw"
  65. group_binds:
  66. - glance_api
  67. - cinder_api
  68. - cinder_volume
  69. - nova_compute
  70.  
  71.  
  72. # galera, memcache, rabbitmq, utility
  73. shared-infra_hosts:
  74. deploy:
  75. ip: 172.29.236.11
  76.  
  77.  
  78. # repository (apt cache, python packages, etc)
  79. repo-infra_hosts:
  80. deploy:
  81. ip: 172.29.236.11
  82.  
  83. os-infra_hosts:
  84. deploy:
  85. ip: 172.29.236.11
  86.  
  87. # keystone
  88. identity_hosts:
  89. deploy:
  90. ip: 172.29.236.11
  91.  
  92. # glance
  93. image_hosts:
  94. deploy:
  95. ip: 172.29.236.11
  96.  
  97. # nova api, conductor, etc services
  98. compute-infra_hosts:
  99. deploy:
  100. ip: 172.29.236.11
  101.  
  102. # heat
  103. orchestration_hosts:
  104. deploy:
  105. ip: 172.29.236.11
  106.  
  107. # horizon
  108. dashboard_hosts:
  109. deploy:
  110. ip: 172.29.236.11
  111.  
  112. # neutron server, agents (L3, etc)
  113. network_hosts:
  114. deploy:
  115. ip: 172.29.236.11
  116.  
  117. # nova hypervisors
  118. compute_hosts:
  119. target:
  120. ip: 172.29.236.12
  121.  
  122. # cinder api services
  123. storage-infra_hosts:
  124. deploy:
  125. ip: 172.29.236.11
  126.  
  127.  
  128. # cinder storage host (LVM-backed)
  129. storage_hosts:
  130. storage:
  131. ip: 172.29.236.13
  132. container_vars:
  133. cinder_backends:
  134. limit_container_types: cinder_volume
  135. lvm:
  136. volume_group: cinder-volumes
  137. volume_driver: cinder.volume.drivers.lvm.LVMVolumeDriver
  138. volume_backend_name: LVM_iSCSI
  139. iscsi_ip_address: "172.29.244.13"
  140.  
  141. log_hosts:
  142. storage:
  143. ip: 172.29.236.13
  144.  
  145. # load balancer
  146. haproxy_hosts:
  147. deploy:
  148. ip: 172.29.236.11
  149.  
  150. root@deploy:~#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement