Advertisement
Guest User

Untitled

a guest
Mar 17th, 2017
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.32 KB | None | 0 0
  1. 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.100
  16. # The external IP is quoted simply to ensure that the .aio file can be used as input
  17. # dynamic inventory testing.
  18. external_lb_vip_address: "192.168.21.221"
  19. tunnel_bridge: "br-vxlan"
  20. management_bridge: "br-mgmt"
  21. provider_networks:
  22. - network:
  23. container_bridge: "br-mgmt"
  24. container_type: "veth"
  25. container_interface: "eth1"
  26. ip_from_q: "container"
  27. type: "raw"
  28. group_binds:
  29. - all_containers
  30. - hosts
  31. is_container_address: true
  32. is_ssh_address: true
  33. - network:
  34. container_bridge: "br-vxlan"
  35. container_type: "veth"
  36. container_interface: "eth10"
  37. ip_from_q: "tunnel"
  38. type: "vxlan"
  39. range: "1:1000"
  40. net_name: "vxlan"
  41. group_binds:
  42. - neutron_linuxbridge_agent
  43. - network:
  44. container_bridge: "br-vlan"
  45. container_type: "veth"
  46. container_interface: "eth12"
  47. host_bind_override: "eth12"
  48. type: "flat"
  49. net_name: "flat"
  50. group_binds:
  51. - neutron_linuxbridge_agent
  52. - network:
  53. container_bridge: "br-vlan"
  54. container_type: "veth"
  55. container_interface: "eth11"
  56. type: "vlan"
  57. range: "1:1"
  58. net_name: "vlan"
  59. group_binds:
  60. - neutron_linuxbridge_agent
  61. - network:
  62. container_bridge: "br-storage"
  63. container_type: "veth"
  64. container_interface: "eth2"
  65. ip_from_q: "storage"
  66. type: "raw"
  67. group_binds:
  68. - glance_api
  69. - cinder_api
  70. - cinder_volume
  71. - nova_compute
  72. - swift_proxy
  73.  
  74. shared-infra_hosts:
  75. aio1:
  76. # Rabbitmq, and galera are set to multiples to test clustering.
  77. affinity:
  78. galera_container: 1
  79. rabbit_mq_container: 1
  80. ip: 172.29.236.100
  81.  
  82. os-infra_hosts:
  83. aio1:
  84. # Horizon is set to multiple to test clustering. This test only requires x2.
  85. affinity:
  86. horizon_container: 1
  87. ip: 172.29.236.100
  88.  
  89. storage-infra_hosts:
  90. aio1:
  91. ip: 172.29.236.100
  92.  
  93. repo-infra_hosts:
  94. aio1:
  95. # Repo is set to multiple to test clustering. This test only requires x2.
  96. affinity:
  97. repo_container: 1
  98. ip: 172.29.236.100
  99.  
  100. identity_hosts:
  101. aio1:
  102. # Keystone is set to multiple to test clustering. This test only requires x2.
  103. affinity:
  104. keystone_container: 1
  105. ip: 172.29.236.100
  106.  
  107. compute_hosts:
  108. aio1:
  109. ip: 172.29.236.100
  110.  
  111. storage_hosts:
  112. aio1:
  113. ip: 172.29.236.100
  114. container_vars:
  115. cinder_backends:
  116. limit_container_types: cinder_volume
  117. lvm:
  118. volume_group: cinder-volumes
  119. volume_driver: cinder.volume.drivers.lvm.LVMVolumeDriver
  120. volume_backend_name: LVM_iSCSI
  121. iscsi_ip_address: "172.29.236.100"
  122.  
  123. log_hosts:
  124. aio1:
  125. ip: 172.29.236.100
  126.  
  127. network_hosts:
  128. aio1:
  129. ip: 172.29.236.100
  130.  
  131. haproxy_hosts:
  132. aio1:
  133. ip: 172.29.236.100
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement