kolla-ansible/ansible/roles/neutron/tasks/deploy.yml
Yang Youseok 50a72cac17 Provide support for neutron dev mode in kolla
Add a possibility to mount sources as volumes to containers,
in "more than documentation" way. That will let us to use kolla
as a replacement for devstack.

Partially implements: blueprint mount-sources

Change-Id: I4868ed6829bd037e1012d1f40c4a1d1b9995bf95
2019-04-19 12:25:37 +09:00

20 lines
438 B
YAML

---
- include_tasks: register.yml
when: inventory_hostname in groups['neutron-server']
- include_tasks: clone.yml
when: neutron_dev_mode | bool
- include_tasks: config.yml
- include_tasks: config-neutron-fake.yml
when:
- enable_nova_fake | bool
- inventory_hostname in groups['compute']
- include_tasks: bootstrap.yml
when: inventory_hostname in groups['neutron-server']
- name: Flush Handlers
meta: flush_handlers