b685ac44e0
Including tasks has a performance penalty when compared with importing tasks. If the include has a condition associated with it, then the overhead of the include may be lower than the overhead of skipping all imported tasks. For unconditionally included tasks, switching to import_tasks provides a clear benefit. Benchmarking of include vs. import is available at [1]. This change switches from include_tasks to import_tasks where there is no condition applied to the include. [1] https://github.com/stackhpc/ansible-scaling/blob/master/doc/include-and-import.md#task-include-and-import Partially-Implements: blueprint performance-improvements Change-Id: Ia45af4a198e422773d9f009c7f7b2e32ce9e3b97
43 lines
1.4 KiB
YAML
43 lines
1.4 KiB
YAML
---
|
|
# NOTE(pbourke): These tasks perform a 'full stop upgrade', which is necessary when moving between
|
|
# major releases. In future kolla-ansible releases we may be able to change this to a rolling
|
|
# restart. For info on this process see https://www.rabbitmq.com/upgrade.html
|
|
- name: Checking if rabbitmq container needs upgrading
|
|
vars:
|
|
service_name: "rabbitmq"
|
|
service: "{{ rabbitmq_services[service_name] }}"
|
|
become: true
|
|
kolla_docker:
|
|
action: "compare_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "{{ project_name }}"
|
|
image: "{{ rabbitmq_image_full }}"
|
|
environment: "{{ service.environment }}"
|
|
when: inventory_hostname in groups[role_rabbitmq_groups]
|
|
register: rabbitmq_differs
|
|
|
|
- import_tasks: config.yml
|
|
|
|
- name: Stopping all rabbitmq instances but the first node
|
|
become: true
|
|
kolla_docker:
|
|
action: "stop_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "{{ project_name }}"
|
|
when:
|
|
- inventory_hostname != groups[role_rabbitmq_groups]|first
|
|
- rabbitmq_differs['result']
|
|
|
|
- name: Stopping rabbitmq on the first node
|
|
become: true
|
|
kolla_docker:
|
|
action: "stop_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "{{ project_name }}"
|
|
when:
|
|
- inventory_hostname == groups[role_rabbitmq_groups]|first
|
|
- rabbitmq_differs['result']
|
|
|
|
- name: Flush handlers
|
|
meta: flush_handlers
|