Advertisement
Guest User

Untitled

a guest
Aug 28th, 2017
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.14 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.  
  4. [deployment]
  5. localhost ansible_connection=local network_interface=enp0s25
  6.  
  7. [control]
  8. # These hostname must be resolvable from your deployment host
  9. controller1
  10. controller2
  11. controller3
  12.  
  13. # The above can also be specified as follows:
  14. #control[01:03] ansible_user=kolla
  15.  
  16. # The network nodes are where your l3-agent and loadbalancers will run
  17. # This can be the same as a host in the control group
  18. [network]
  19. controller1
  20. controller2
  21. controller3
  22.  
  23. [compute]
  24. compute1
  25. compute2
  26.  
  27. [monitoring]
  28. controller2
  29.  
  30. # When compute nodes and control nodes use different interfaces,
  31. # you can specify "api_interface" and other interfaces like below:
  32. #compute01 neutron_external_interface=eth0 api_interface=em1 storage_interface=em1 tunnel_interface=em1
  33.  
  34. [storage]
  35. #controller3
  36.  
  37. [baremetal:children]
  38. control
  39. network
  40. compute
  41. storage
  42. monitoring
  43.  
  44. # You can explicitly specify which hosts run each project by updating the
  45. # groups in the sections below. Common services are grouped together.
  46. [chrony-server:children]
  47. control
  48.  
  49. [chrony:children]
  50. control
  51. network
  52. compute
  53. storage
  54. monitoring
  55.  
  56. [collectd:children]
  57. compute
  58.  
  59. [grafana:children]
  60. monitoring
  61.  
  62. [etcd:children]
  63. control
  64.  
  65. [influxdb:children]
  66. monitoring
  67.  
  68. [karbor:children]
  69. control
  70.  
  71. [kibana:children]
  72. control
  73.  
  74. [telegraf:children]
  75. compute
  76. control
  77. monitoring
  78. network
  79. storage
  80.  
  81. [elasticsearch:children]
  82. control
  83.  
  84. [haproxy:children]
  85. network
  86.  
  87. [mariadb:children]
  88. control
  89.  
  90. [rabbitmq:children]
  91. control
  92.  
  93. [mongodb:children]
  94. control
  95.  
  96. [keystone:children]
  97. control
  98.  
  99. [glance:children]
  100. control
  101.  
  102. [nova:children]
  103. control
  104.  
  105. [neutron:children]
  106. network
  107.  
  108. [cinder:children]
  109. control
  110.  
  111. [cloudkitty:children]
  112. control
  113.  
  114. [freezer:children]
  115. control
  116.  
  117. [memcached:children]
  118. control
  119.  
  120. [horizon:children]
  121. control
  122.  
  123. [swift:children]
  124. control
  125.  
  126. [barbican:children]
  127. control
  128.  
  129. [heat:children]
  130. control
  131.  
  132. [murano:children]
  133. control
  134.  
  135. [solum:children]
  136. control
  137.  
  138. [ironic:children]
  139. control
  140.  
  141. [ceph:children]
  142. control
  143.  
  144. [magnum:children]
  145. control
  146.  
  147. [sahara:children]
  148. control
  149.  
  150. [mistral:children]
  151. control
  152.  
  153. [manila:children]
  154. control
  155.  
  156. [ceilometer:children]
  157. control
  158.  
  159. [aodh:children]
  160. control
  161.  
  162. [congress:children]
  163. control
  164.  
  165. [panko:children]
  166. control
  167.  
  168. [gnocchi:children]
  169. control
  170.  
  171. [tacker:children]
  172. control
  173.  
  174. [trove:children]
  175. control
  176.  
  177. # Tempest
  178. [tempest:children]
  179. control
  180.  
  181. [senlin:children]
  182. control
  183.  
  184. [vmtp:children]
  185. control
  186.  
  187. [watcher:children]
  188. control
  189.  
  190. [rally:children]
  191. control
  192.  
  193. [searchlight:children]
  194. control
  195.  
  196. [octavia:children]
  197. control
  198.  
  199. [designate:children]
  200. control
  201.  
  202. [placement:children]
  203. control
  204.  
  205. # Additional control implemented here. These groups allow you to control which
  206. # services run on which hosts at a per-service level.
  207. #
  208. # Word of caution: Some services are required to run on the same host to
  209. # function appropriately. For example, neutron-metadata-agent must run on the
  210. # same host as the l3-agent and (depending on configuration) the dhcp-agent.
  211.  
  212. # Glance
  213. [glance-api:children]
  214. glance
  215.  
  216. [glance-registry:children]
  217. glance
  218.  
  219. # Nova
  220. [nova-api:children]
  221. nova
  222.  
  223. [nova-conductor:children]
  224. nova
  225.  
  226. [nova-consoleauth:children]
  227. nova
  228.  
  229. [nova-novncproxy:children]
  230. nova
  231.  
  232. [nova-scheduler:children]
  233. nova
  234.  
  235. [nova-spicehtml5proxy:children]
  236. nova
  237.  
  238. [nova-compute-ironic:children]
  239. nova
  240.  
  241. [nova-serialproxy:children]
  242. nova
  243.  
  244. # Neutron
  245. [neutron-server:children]
  246. control
  247.  
  248. [neutron-dhcp-agent:children]
  249. neutron
  250.  
  251. [neutron-l3-agent:children]
  252. neutron
  253.  
  254. [neutron-lbaas-agent:children]
  255. neutron
  256.  
  257. [neutron-metadata-agent:children]
  258. neutron
  259.  
  260. [neutron-vpnaas-agent:children]
  261. neutron
  262.  
  263. # Ceph
  264. [ceph-mon:children]
  265. ceph
  266.  
  267. [ceph-rgw:children]
  268. ceph
  269.  
  270. [ceph-osd:children]
  271. storage
  272.  
  273. # Cinder
  274. [cinder-api:children]
  275. cinder
  276.  
  277. [cinder-backup:children]
  278. storage
  279.  
  280. [cinder-scheduler:children]
  281. cinder
  282.  
  283. [cinder-volume:children]
  284. storage
  285.  
  286. # Cloudkitty
  287. [cloudkitty-api:children]
  288. cloudkitty
  289.  
  290. [cloudkitty-processor:children]
  291. cloudkitty
  292.  
  293. # Freezer
  294. [freezer-api:children]
  295. freezer
  296.  
  297. # iSCSI
  298. [iscsid:children]
  299. compute
  300. storage
  301. ironic-conductor
  302.  
  303. [tgtd:children]
  304. storage
  305.  
  306. # Karbor
  307. [karbor-api:children]
  308. karbor
  309.  
  310. [karbor-protection:children]
  311. karbor
  312.  
  313. [karbor-operationengine:children]
  314. karbor
  315.  
  316. # Manila
  317. [manila-api:children]
  318. manila
  319.  
  320. [manila-scheduler:children]
  321. manila
  322.  
  323. [manila-share:children]
  324. network
  325.  
  326. [manila-data:children]
  327. manila
  328.  
  329. # Swift
  330. [swift-proxy-server:children]
  331. swift
  332.  
  333. [swift-account-server:children]
  334. storage
  335.  
  336. [swift-container-server:children]
  337. storage
  338.  
  339. [swift-object-server:children]
  340. storage
  341.  
  342. # Barbican
  343. [barbican-api:children]
  344. barbican
  345.  
  346. [barbican-keystone-listener:children]
  347. barbican
  348.  
  349. [barbican-worker:children]
  350. barbican
  351.  
  352. # Heat
  353. [heat-api:children]
  354. heat
  355.  
  356. [heat-api-cfn:children]
  357. heat
  358.  
  359. [heat-engine:children]
  360. heat
  361.  
  362. # Murano
  363. [murano-api:children]
  364. murano
  365.  
  366. [murano-engine:children]
  367. murano
  368.  
  369. # Ironic
  370. [ironic-api:children]
  371. ironic
  372.  
  373. [ironic-conductor:children]
  374. ironic
  375.  
  376. [ironic-inspector:children]
  377. ironic
  378.  
  379. [ironic-pxe:children]
  380. ironic
  381.  
  382. # Magnum
  383. [magnum-api:children]
  384. magnum
  385.  
  386. [magnum-conductor:children]
  387. magnum
  388.  
  389. # Sahara
  390. [sahara-api:children]
  391. sahara
  392.  
  393. [sahara-engine:children]
  394. sahara
  395.  
  396. # Solum
  397. [solum-api:children]
  398. solum
  399.  
  400. [solum-worker:children]
  401. solum
  402.  
  403. [solum-deployer:children]
  404. solum
  405.  
  406. [solum-conductor:children]
  407. solum
  408.  
  409. # Mistral
  410. [mistral-api:children]
  411. mistral
  412.  
  413. [mistral-executor:children]
  414. mistral
  415.  
  416. [mistral-engine:children]
  417. mistral
  418.  
  419. # Ceilometer
  420. [ceilometer-api:children]
  421. ceilometer
  422.  
  423. [ceilometer-central:children]
  424. ceilometer
  425.  
  426. [ceilometer-notification:children]
  427. ceilometer
  428.  
  429. [ceilometer-collector:children]
  430. ceilometer
  431.  
  432. [ceilometer-compute:children]
  433. compute
  434.  
  435. # Aodh
  436. [aodh-api:children]
  437. aodh
  438.  
  439. [aodh-evaluator:children]
  440. aodh
  441.  
  442. [aodh-listener:children]
  443. aodh
  444.  
  445. [aodh-notifier:children]
  446. aodh
  447.  
  448. # Congress
  449. [congress-api:children]
  450. congress
  451.  
  452. [congress-datasource:children]
  453. congress
  454.  
  455. [congress-policy-engine:children]
  456. congress
  457.  
  458. # Panko
  459. [panko-api:children]
  460. panko
  461.  
  462. # Gnocchi
  463. [gnocchi-api:children]
  464. gnocchi
  465.  
  466. [gnocchi-statsd:children]
  467. gnocchi
  468.  
  469. [gnocchi-metricd:children]
  470. gnocchi
  471.  
  472. # Trove
  473. [trove-api:children]
  474. trove
  475.  
  476. [trove-conductor:children]
  477. trove
  478.  
  479. [trove-taskmanager:children]
  480. trove
  481.  
  482. # Multipathd
  483. [multipathd:children]
  484. compute
  485.  
  486. # Watcher
  487. [watcher-api:children]
  488. watcher
  489.  
  490. [watcher-engine:children]
  491. watcher
  492.  
  493. [watcher-applier:children]
  494. watcher
  495.  
  496. # Senlin
  497. [senlin-api:children]
  498. senlin
  499.  
  500. [senlin-engine:children]
  501. senlin
  502.  
  503. # Searchlight
  504. [searchlight-api:children]
  505. searchlight
  506.  
  507. [searchlight-listener:children]
  508. searchlight
  509.  
  510. # Octavia
  511. [octavia-api:children]
  512. octavia
  513.  
  514. [octavia-health-manager:children]
  515. octavia
  516.  
  517. [octavia-housekeeping:children]
  518. octavia
  519.  
  520. [octavia-worker:children]
  521. octavia
  522.  
  523. # Designate
  524. [designate-api:children]
  525. designate
  526.  
  527. [designate-central:children]
  528. designate
  529.  
  530. [designate-mdns:children]
  531. designate
  532.  
  533. [designate-worker:children]
  534. designate
  535.  
  536. [designate-sink:children]
  537. designate
  538.  
  539. [designate-backend-bind9:children]
  540. designate
  541.  
  542. # Placement
  543. [placement-api:children]
  544. placement
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement