Advertisement
Guest User

kolla node config

a guest
Jun 27th, 2016
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.64 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. 192.168.200.2 ansible_ssh_user=cadmin
  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. 192.168.200.11 ansible_ssh_user=cadmin
  14.  
  15. [compute]
  16. 192.168.200.101 ansible_ssh_user=cadmin
  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. 192.168.200.51 ansible_ssh_user=cadmin
  24.  
  25.  
  26.  
  27. # You can explicitly specify which hosts run each project by updating the
  28. # groups in the sections below. Common services are grouped together.
  29. [kibana:children]
  30. control
  31.  
  32. [elasticsearch:children]
  33. control
  34.  
  35. [haproxy:children]
  36. network
  37.  
  38. [mariadb:children]
  39. control
  40.  
  41. [rabbitmq:children]
  42. control
  43.  
  44. [mongodb:children]
  45. control
  46.  
  47. [keystone:children]
  48. control
  49.  
  50. [glance:children]
  51. control
  52.  
  53. [nova:children]
  54. control
  55.  
  56. [neutron:children]
  57. network
  58.  
  59. [cinder:children]
  60. control
  61.  
  62. [memcached:children]
  63. control
  64.  
  65. [horizon:children]
  66. control
  67.  
  68. [swift:children]
  69. control
  70.  
  71. [heat:children]
  72. control
  73.  
  74. [murano:children]
  75. control
  76.  
  77. [ironic:children]
  78. control
  79.  
  80. [ceph-mon:children]
  81. control
  82.  
  83. [ceph-rgw:children]
  84. control
  85.  
  86. [ceph-osd:children]
  87. storage
  88.  
  89. [magnum:children]
  90. control
  91.  
  92. [mistral:children]
  93. control
  94.  
  95. [manila:children]
  96. control
  97.  
  98. # Additional control implemented here. These groups allow you to control which
  99. # services run on which hosts at a per-service level.
  100. #
  101. # Word of caution: Some services are required to run on the same host to
  102. # function appropriately. For example, neutron-metadata-agent must run on the
  103. # same host as the l3-agent and (depending on configuration) the dhcp-agent.
  104.  
  105. # Glance
  106. [glance-api:children]
  107. glance
  108.  
  109. [glance-registry:children]
  110. storage
  111.  
  112. # Nova
  113. [nova-api:children]
  114. nova
  115.  
  116. [nova-conductor:children]
  117. nova
  118.  
  119. [nova-consoleauth:children]
  120. nova
  121.  
  122. [nova-novncproxy:children]
  123. nova
  124.  
  125. [nova-scheduler:children]
  126. nova
  127.  
  128. [nova-spicehtml5proxy:children]
  129. nova
  130.  
  131. [nova-compute-ironic:children]
  132. nova
  133.  
  134. # Neutron
  135. [neutron-server:children]
  136. control
  137.  
  138. [neutron-dhcp-agent:children]
  139. neutron
  140.  
  141. [neutron-l3-agent:children]
  142. neutron
  143.  
  144. [neutron-lbaas-agent:children]
  145. neutron
  146.  
  147. [neutron-metadata-agent:children]
  148. neutron
  149.  
  150. # Cinder
  151. [cinder-api:children]
  152. cinder
  153.  
  154. [cinder-backup:children]
  155. storage
  156.  
  157. [cinder-scheduler:children]
  158. cinder
  159.  
  160. [cinder-volume:children]
  161. storage
  162.  
  163. # iSCSI
  164. [iscsid:children]
  165. compute
  166.  
  167. [tgtd:children]
  168. storage
  169.  
  170. # Manila
  171. [manila-api:children]
  172. manila
  173.  
  174. [manila-scheduler:children]
  175. manila
  176.  
  177. [manila-share:children]
  178. storage
  179.  
  180. # Swift
  181. [swift-proxy-server:children]
  182. swift
  183.  
  184. [swift-account-server:children]
  185. storage
  186.  
  187. [swift-container-server:children]
  188. storage
  189.  
  190. [swift-object-server:children]
  191. storage
  192.  
  193. # Heat
  194. [heat-api:children]
  195. heat
  196.  
  197. [heat-api-cfn:children]
  198. heat
  199.  
  200. [heat-engine:children]
  201. heat
  202.  
  203. # Murano
  204. [murano-api:children]
  205. murano
  206.  
  207. [murano-engine:children]
  208. murano
  209.  
  210. # Ironic
  211. [ironic-api:children]
  212. ironic
  213.  
  214. [ironic-conductor:children]
  215. ironic
  216.  
  217. [ironic-inspector:children]
  218. ironic
  219.  
  220. [ironic-pxe:children]
  221. ironic
  222.  
  223. # Magnum
  224. [magnum-api:children]
  225. magnum
  226.  
  227. [magnum-conductor:children]
  228. magnum
  229.  
  230. # Mistral
  231. [mistral-api:children]
  232. mistral
  233.  
  234. [mistral-executor:children]
  235. mistral
  236.  
  237. [mistral-engine:children]
  238. mistral
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement