Advertisement
Guest User

Untitled

a guest
Jan 12th, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.56 KB | None | 0 0
  1. ---
  2. cidr_networks:
  3. container: 10.10.0.0/16
  4. tunnel: 10.200.0.0/16
  5. storage: 172.16.0.0/16
  6. used_ips:
  7. - 10.10.0.1
  8. - 10.200.0.1
  9. - 172.16.0.1
  10. - 10.10.1.1,10.10.1.50
  11. - 10.200.1.1,10.200.1.50
  12. - 172.16.1.1,172.16.1.50
  13.  
  14.  
  15. global_overrides:
  16. internal_lb_vip_address: 10.10.1.21
  17. external_lb_vip_address: 10.10.1.22
  18. lb_name: haproxy_hosts
  19. tunnel_bridge: "br-vxlan"
  20. management_bridge: "br-mgmt"
  21. provider_networks:
  22. - network:
  23. group_binds:
  24. - all_containers
  25. - hosts
  26. type: "raw"
  27. container_bridge: "br-mgmt"
  28. container_interface: "eth1"
  29. container_type: "veth"
  30. ip_from_q: "container"
  31. is_container_address: true
  32. is_ssh_address: true
  33. - network:
  34. group_binds:
  35. - glance_api
  36. - cinder_api
  37. - cinder_volume
  38. - nova_compute
  39. # Uncomment the next line if using swift with a storage network.
  40. # - swift_proxy
  41. type: "raw"
  42. container_bridge: "br-storage"
  43. container_type: "veth"
  44. container_interface: "eth2"
  45. container_mtu: "9000"
  46. ip_from_q: "storage"
  47. - network:
  48. group_binds:
  49. - neutron_linuxbridge_agent
  50. container_bridge: "br-vxlan"
  51. container_type: "veth"
  52. container_interface: "eth10"
  53. container_mtu: "9000"
  54. ip_from_q: "tunnel"
  55. type: "vxlan"
  56. range: "1:10000"
  57. net_name: "vxlan"
  58. - network:
  59. group_binds:
  60. - neutron_linuxbridge_agent
  61. container_bridge: "br-vlan"
  62. container_type: "veth"
  63. container_interface: "eth11"
  64. type: "vlan"
  65. range: "101:200,301:400"
  66. net_name: "vlan"
  67. - network:
  68. group_binds:
  69. - neutron_linuxbridge_agent
  70. container_bridge: "br-vlan"
  71. container_type: "veth"
  72. container_interface: "eth12"
  73. host_bind_override: "eth12"
  74. type: "flat"
  75. net_name: "flat"
  76.  
  77. shared-infra_hosts:
  78. c2:
  79. ip: 10.10.1.2
  80. c3:
  81. ip: 10.10.1.3
  82.  
  83.  
  84. haproxy_hosts:
  85. c2:
  86. ip: 10.10.1.2
  87. c3:
  88. ip: 10.10.1.3
  89. repo-infra_hosts:
  90. c2:
  91. ip: 10.10.1.2
  92. c3:
  93. ip: 10.10.1.3
  94. os-infra_hosts:
  95. c2:
  96. ip: 10.10.1.2
  97. c3:
  98. ip: 10.10.1.3
  99. identity_hosts:
  100. c2:
  101. ip: 10.10.1.2
  102. c3:
  103. ip: 10.10.1.3
  104. network_hosts:
  105. c2:
  106. ip: 10.10.1.2
  107. c3:
  108. ip: 10.10.1.3
  109. compute_hosts:
  110. c4:
  111. ip: 10.10.1.4
  112. c5:
  113. ip: 10.10.1.5
  114. storage-infra_hosts:
  115. c2:
  116. ip: 10.10.1.2
  117. c3:
  118. ip: 10.10.1.3
  119. storage_hosts:
  120. c7:
  121. ip: 10.10.1.7
  122. log_hosts:
  123. c7:
  124. ip: 10.10.1.7
  125.  
  126.  
  127.  
  128. user variables
  129.  
  130. ---
  131. ceilometer_db_type: mongodb
  132. ceilometer_db_ip: localhost
  133. ceilometer_db_port: 27017
  134. swift_ceilometer_enabled: False
  135. heat_ceilometer_enabled: False
  136. cinder_ceilometer_enabled: False
  137. glance_ceilometer_enabled: False
  138. nova_ceilometer_enabled: False
  139. neutron_ceilometer_enabled: False
  140. aodh_db_type: mongodb
  141. aodh_db_ip: localhost
  142. aodh_db_port: 27017
  143. glance_default_store: file
  144. glance_notification_driver: noop
  145. glance_swift_store_endpoint_type: internalURL
  146. nova_virt_type: kvm
  147. ssl_protocol: "ALL -SSLv2 -SSLv3"
  148. ssl_cipher_suite: "ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS"
  149. haproxy_keepalived_external_vip_cidr: "{{external_lb_vip_address}}/32"
  150. haproxy_keepalived_internal_vip_cidr: "{{internal_lb_vip_address}}/32"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement