Merge "Add external LB management handler hook interface"

This commit is contained in:
Zuul 2017-11-21 11:00:40 +00:00 committed by Gerrit Code Review
commit 3e9e64fc03
6 changed files with 23 additions and 1 deletions

View File

@ -33,10 +33,22 @@ Example playbook
.. literalinclude:: ../../examples/playbook.yml
:language: yaml
External Restart Hooks
~~~~~~~~~~~~~~~~~~~~~~
When the role performs a restart of the service, it will notify an Ansible
handler named ``Manage LB``, which is a noop within this role. In the
playbook, other roles may be loaded before and after this role which will
implement Ansible handler listeners for ``Manage LB``, allowing external roles
to manage the load balancer endpoints responsible for sending traffic to the
servers being restarted by marking them in maintenance or active mode,
draining sessions, etc. For an example implementation, please reference the
`ansible-haproxy-endpoints role <https://github.com/Logan2211/ansible-haproxy-endpoints>`_
used by the openstack-ansible project.
Tags
~~~~
This role supports two tags: ``glance-install`` and ``glance-config``.
The ``glance-install`` tag can be used to install and upgrade. The
``glance-config`` tag can be used to manage configuration.

View File

@ -56,3 +56,7 @@
retries: 5
delay: 2
listen: "Restart glance services"
- meta: noop
listen: Manage LB
when: false

View File

@ -49,6 +49,7 @@
group: "root"
with_items: "{{ filtered_glance_services }}"
notify:
- Manage LB
- Restart glance services
- name: Place the systemd init script
@ -62,4 +63,5 @@
config_type: "ini"
with_items: "{{ filtered_glance_services }}"
notify:
- Manage LB
- Restart glance services

View File

@ -81,6 +81,7 @@
copy: "no"
when: glance_get_venv | changed
notify:
- Manage LB
- Restart glance services
- name: Install pip packages
@ -99,6 +100,7 @@
delay: 2
when: glance_get_venv | failed or glance_get_venv | skipped
notify:
- Manage LB
- Restart glance services
- name: Remove python from path first (CentOS, openSUSE)

View File

@ -72,6 +72,7 @@
config_overrides: "{{ glance_glance_rootwrap_conf_overrides }}"
config_type: "ini"
notify:
- Manage LB
- Restart glance services
- name: Create nfs shares local path

View File

@ -29,4 +29,5 @@
with_items: "{{ filtered_glance_services }}"
when: item.wsgi_app | default(False)
notify:
- Manage LB
- Restart glance services