kolla-ansible/ansible/roles/glance/tasks/deploy.yml
caoyuan 03fd9715c5 Remove the deprecate the Glance Registry
A spec to Deprecate the Glance Registry Service[0] was accepted in Newton,
but it contained the ambiguous statement, "Mark the service as deprecated
and ready for removal in the Q release." kolla-ansible disable the
glance-registry in Q release[1], and since we are in S now,
remove glance-registry is safe.

[0]: http://specs.openstack.org/openstack/glance-specs/specs/newton/approved/glance/deprecate-registry.html
[1]: https://review.openstack.org/#/c/566804/

Change-Id: I48f794029e97aa6f76bbd500e33f28f51a3f2ac4
2018-11-21 20:51:51 +08:00

20 lines
437 B
YAML

---
- include_tasks: register.yml
when: inventory_hostname in groups['glance-api']
- include_tasks: config.yml
- include_tasks: clone.yml
when:
- glance_dev_mode | bool
- inventory_hostname in groups['glance-api']
- include_tasks: bootstrap.yml
when: inventory_hostname in groups['glance-api']
- name: Flush handlers
meta: flush_handlers
- include_tasks: check.yml
when: inventory_hostname in groups['glance-api']