![Mick Thompson](/assets/img/avatar_default.png)
Deploy the core services for murano-api and murano-engine containers. Implements: bp ansible-murano Change-Id: Ibcc618665a3509465ba8f9249a417e8848087eef
49 lines
1.4 KiB
YAML
Executable File
49 lines
1.4 KiB
YAML
Executable File
---
|
|
- hosts: haproxy
|
|
roles:
|
|
- { role: haproxy, tags: haproxy, keepalived, when: enable_haproxy | bool }
|
|
|
|
- hosts: mariadb
|
|
roles:
|
|
- { role: mariadb, tags: mariadb, when: enable_mariadb | bool }
|
|
|
|
- hosts: rabbitmq
|
|
roles:
|
|
- { role: rabbitmq, tags: rabbitmq, when: enable_rabbitmq | bool }
|
|
|
|
- hosts: keystone
|
|
roles:
|
|
- { role: keystone, tags: keystone, when: enable_keystone | bool }
|
|
|
|
- hosts: [swift-proxy-server, swift-account-server, swift-object-server, swift-container-server ]
|
|
roles:
|
|
- { role: swift, tags: swift, when: enable_swift | bool }
|
|
|
|
- hosts: [glance-api, glance-registry]
|
|
roles:
|
|
- { role: glance, tags: glance, when: enable_glance | bool }
|
|
|
|
- hosts: [nova-api, nova-conductor, nova-consoleauth, nova-novncproxy, nova-scheduler, compute]
|
|
roles:
|
|
- { role: nova, tags: nova, when: enable_nova | bool }
|
|
|
|
- hosts: [neutron-server, neutron-agents, compute]
|
|
roles:
|
|
- { role: neutron, tags: neutron, when: enable_neutron | bool }
|
|
|
|
- hosts: [cinder-api, cinder-backup, cinder-scheduler, cinder-volume]
|
|
roles:
|
|
- { role: cinder, tags: cinder, when: enable_cinder | bool }
|
|
|
|
- hosts: [heat-api, heat-api-cfn, heat-engine]
|
|
roles:
|
|
- { role: heat, tags: heat, when: enable_heat | bool }
|
|
|
|
- hosts: horizon
|
|
roles:
|
|
- { role: horizon, tags: horizon, when: enable_horizon | bool }
|
|
|
|
- hosts: [murano-api, murano-engine]
|
|
roles:
|
|
- { role: murano, tags: murano, when: enable_murano | bool }
|