Advertisement
Guest User

Untitled

a guest
Mar 18th, 2016
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.59 KB | None | 0 0
  1. # These initial groups are the only groups required to be modified. The
  2. # additional groups are for more control of the environment.
  3. [control]
  4. # These hostname must be resolvable from your deployment host
  5. controller #ansible_ssh_user=root #ansible_ssh_pass=l
  6.  
  7. # The above can also be specified as follows:
  8. #control[01:03] ansible_ssh_user=kolla
  9.  
  10. # The network nodes are where your l3-agent and loadbalancers will run
  11. # This can be the same as a host in the control group
  12. [network]
  13. compute #ansible_ssh_user=root #ansible_ssh_pass=l
  14.  
  15. [compute]
  16. compute #ansible_ssh_user=root #ansible_ssh_pass=l
  17.  
  18. # When compute nodes and control nodes use different interfaces,
  19. # you can specify "api_interface" and another interfaces like below:
  20. #compute01 neutron_external_interface=eth0 api_interface=em1 storage_interface=em1 tunnel_interface=em1
  21.  
  22. [storage]
  23. storage #ansible_ssh_user=root #ansible_ssh_pass=l
  24.  
  25.  
  26. # You can explicitly specify which hosts run each project by updating the
  27. # groups in the sections below. Common services are grouped together.
  28. [kibana:children]
  29. control
  30.  
  31. [elasticsearch:children]
  32. control
  33.  
  34. [haproxy:children]
  35. network
  36.  
  37. [mariadb:children]
  38. control
  39.  
  40. [rabbitmq:children]
  41. control
  42.  
  43. [mongodb:children]
  44. control
  45.  
  46. [keystone:children]
  47. control
  48.  
  49. [glance:children]
  50. control
  51.  
  52. [nova:children]
  53. control
  54.  
  55. [neutron:children]
  56. network
  57.  
  58. [cinder:children]
  59. control
  60.  
  61. [memcached:children]
  62. control
  63.  
  64. [horizon:children]
  65. control
  66.  
  67. [swift:children]
  68. control
  69.  
  70. [heat:children]
  71. control
  72.  
  73. [murano:children]
  74. control
  75.  
  76. [ironic:children]
  77. control
  78.  
  79. [ceph-mon:children]
  80. control
  81.  
  82. [ceph-rgw:children]
  83. control
  84.  
  85. [ceph-osd:children]
  86. storage
  87.  
  88. [magnum:children]
  89. control
  90.  
  91. [mistral:children]
  92. control
  93.  
  94. [manila:children]
  95. control
  96.  
  97. # Additional control implemented here. These groups allow you to control which
  98. # services run on which hosts at a per-service level.
  99. #
  100. # Word of caution: Some services are required to run on the same host to
  101. # function appropriately. For example, neutron-metadata-agent must run on the
  102. # same host as the l3-agent and (depending on configuration) the dhcp-agent.
  103.  
  104. # Glance
  105. [glance-api:children]
  106. glance
  107.  
  108. [glance-registry:children]
  109. glance
  110.  
  111. # Nova
  112. [nova-api:children]
  113. nova
  114.  
  115. [nova-conductor:children]
  116. nova
  117.  
  118. [nova-consoleauth:children]
  119. nova
  120.  
  121. [nova-novncproxy:children]
  122. nova
  123.  
  124. [nova-scheduler:children]
  125. nova
  126.  
  127. [nova-spicehtml5proxy:children]
  128. nova
  129.  
  130. [nova-compute-ironic:children]
  131. nova
  132.  
  133. # Neutron
  134. [neutron-server:children]
  135. control
  136.  
  137. [neutron-dhcp-agent:children]
  138. neutron
  139.  
  140. [neutron-l3-agent:children]
  141. neutron
  142.  
  143. [neutron-metadata-agent:children]
  144. neutron
  145.  
  146. # Cinder
  147. [cinder-api:children]
  148. cinder
  149.  
  150. [cinder-backup:children]
  151. storage
  152.  
  153. [cinder-scheduler:children]
  154. cinder
  155.  
  156. [cinder-volume:children]
  157. storage
  158.  
  159. # Manila
  160. [manila-api:children]
  161. manila
  162.  
  163. [manila-scheduler:children]
  164. manila
  165.  
  166. [manila-share:children]
  167. storage
  168.  
  169. # Swift
  170. [swift-proxy-server:children]
  171. swift
  172.  
  173. [swift-account-server:children]
  174. storage
  175.  
  176. [swift-container-server:children]
  177. storage
  178.  
  179. [swift-object-server:children]
  180. storage
  181.  
  182. # Heat
  183. [heat-api:children]
  184. heat
  185.  
  186. [heat-api-cfn:children]
  187. heat
  188.  
  189. [heat-engine:children]
  190. heat
  191.  
  192. # Murano
  193. [murano-api:children]
  194. murano
  195.  
  196. [murano-engine:children]
  197. murano
  198.  
  199. # Ironic
  200. [ironic-api:children]
  201. ironic
  202.  
  203. [ironic-conductor:children]
  204. ironic
  205.  
  206. [ironic-inspector:children]
  207. ironic
  208.  
  209. [ironic-pxe:children]
  210. ironic
  211.  
  212. # Magnum
  213. [magnum-api:children]
  214. magnum
  215.  
  216. [magnum-conductor:children]
  217. magnum
  218.  
  219. # Mistral
  220. [mistral-api:children]
  221. mistral
  222.  
  223. [mistral-executor:children]
  224. mistral
  225.  
  226. [mistral-engine:children]
  227. mistral
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement