de00bf491d
Currently, we have a lot of logic for checking if a handler should run, depending on whether config files have changed and whether the container configuration has changed. As rm_work pointed out during the recent haproxy refactor, these conditionals are typically unnecessary - we can rely on Ansible's handler notification system to only trigger handlers when they need to run. This removes a lot of error prone code. This patch removes conditional handler logic for all services. It is important to ensure that we no longer trigger handlers when unnecessary, because without these checks in place it will trigger a restart of the containers. Implements: blueprint simplify-handlers Change-Id: I4f1aa03e9a9faaf8aecd556dfeafdb834042e4cd
64 lines
1.8 KiB
YAML
64 lines
1.8 KiB
YAML
---
|
|
- name: Copying over ceph.conf for Cinder
|
|
vars:
|
|
services_need_config:
|
|
- "cinder-volume"
|
|
- "cinder-backup"
|
|
merge_configs:
|
|
sources:
|
|
- "{{ node_custom_config }}/cinder/ceph.conf"
|
|
- "{{ node_custom_config }}/cinder/{{ item.key }}/ceph.conf"
|
|
dest: "{{ node_config_directory }}/{{ item.key }}/ceph.conf"
|
|
mode: "0660"
|
|
become: true
|
|
when:
|
|
- item.value.enabled | bool
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.key in services_need_config
|
|
with_dict: "{{ cinder_services }}"
|
|
notify:
|
|
- Restart {{ item.key }} container
|
|
|
|
- name: Copy over Ceph keyring files for cinder-volume
|
|
copy:
|
|
src: "{{ item }}"
|
|
dest: "{{ node_config_directory }}/cinder-volume/"
|
|
mode: "0660"
|
|
become: true
|
|
with_fileglob:
|
|
- "{{ node_custom_config }}/cinder/cinder-volume/ceph.client*"
|
|
when:
|
|
- external_ceph_cephx_enabled | bool
|
|
- inventory_hostname in groups['cinder-volume']
|
|
- cinder_services['cinder-volume'].enabled | bool
|
|
notify:
|
|
- Restart cinder-volume container
|
|
|
|
- name: Copy over Ceph keyring files for cinder-backup
|
|
copy:
|
|
src: "{{ item }}"
|
|
dest: "{{ node_config_directory }}/cinder-backup/"
|
|
mode: "0660"
|
|
become: true
|
|
register: cinder_backup_ceph_keyring
|
|
with_fileglob:
|
|
- "{{ node_custom_config }}/cinder/cinder-backup/ceph.client*"
|
|
when:
|
|
- external_ceph_cephx_enabled | bool
|
|
- inventory_hostname in groups['cinder-backup']
|
|
- cinder_services['cinder-backup'].enabled | bool
|
|
notify:
|
|
- Restart cinder-backup container
|
|
|
|
- name: Ensuring config directory has correct owner and permission
|
|
become: true
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
recurse: yes
|
|
owner: "{{ config_owner_user }}"
|
|
group: "{{ config_owner_group }}"
|
|
when: inventory_hostname in groups[item]
|
|
with_items:
|
|
- "cinder-volume"
|
|
- "cinder-backup"
|