From 7dd254b652829750f7a6dcfcc357d1580d3279e6 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Tue, 14 Jun 2022 19:56:27 +0200 Subject: [PATCH] Remove mention of haproxy-endpoints role Role was never migrated to usage of haproxy-endpoints role and included task was used instead the whole time. With that to reduce complexity and to have unified approach, all mention of the role and handler are removed from the code. Change-Id: I126a9180d37fe3242762776837e2b15abc9924e2 --- doc/source/index.rst | 13 ------------- handlers/main.yml | 4 ---- tasks/mistral_post_install.yml | 1 - 3 files changed, 18 deletions(-) diff --git a/doc/source/index.rst b/doc/source/index.rst index 17df289..171d84a 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -25,19 +25,6 @@ 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 `_ -used by the openstack-ansible project. - Tags ~~~~ diff --git a/handlers/main.yml b/handlers/main.yml index 022ecae..3bd089e 100644 --- a/handlers/main.yml +++ b/handlers/main.yml @@ -42,7 +42,3 @@ listen: - "Restart mistral services" - "venv changed" - -- meta: noop - listen: Manage LB - when: false diff --git a/tasks/mistral_post_install.yml b/tasks/mistral_post_install.yml index 563c4c7..ca3353c 100644 --- a/tasks/mistral_post_install.yml +++ b/tasks/mistral_post_install.yml @@ -28,7 +28,6 @@ config_overrides: "{{ mistral_mistral_conf_overrides }}" config_type: "ini" notify: - - Manage LB - Restart mistral services - Restart uwsgi services