2b723ead05
The merge_configs action plugin is updated with an option to control whether whitespace should be used around equal signs. The default remains to use whitespace: only zookeeper.cfg doesn't use them. This is to avoid issues with the zkCleanup.sh script which expects no whitespace. The ZooKeeper documentation also uses no whitespace in configuration file examples. Change-Id: Ia082a1c002cc4e8b04f7696fdee827b747c6d13f Closes-Bug: #1917490
57 lines
1.6 KiB
YAML
57 lines
1.6 KiB
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item.key }}"
|
|
state: "directory"
|
|
owner: "{{ config_owner_user }}"
|
|
group: "{{ config_owner_group }}"
|
|
mode: "0770"
|
|
become: true
|
|
when:
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.value.enabled | bool
|
|
with_dict: "{{ zookeeper_services }}"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item.key }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item.key }}/config.json"
|
|
mode: "0660"
|
|
become: true
|
|
when:
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.value.enabled | bool
|
|
with_dict: "{{ zookeeper_services }}"
|
|
notify:
|
|
- Restart zookeeper container
|
|
|
|
- name: Copying over zookeeper configuration
|
|
merge_configs:
|
|
sources:
|
|
- "{{ role_path }}/templates/{{ item.key }}.cfg.j2"
|
|
- "{{ node_custom_config }}/{{ item.key }}.cfg"
|
|
- "{{ node_custom_config }}/{{ item.key }}/{{ inventory_hostname }}/{{ item.key }}.cfg"
|
|
whitespace: False
|
|
dest: "{{ node_config_directory }}/{{ item.key }}/{{ item.key }}.cfg"
|
|
mode: "0660"
|
|
become: true
|
|
when:
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.value.enabled | bool
|
|
with_dict: "{{ zookeeper_services }}"
|
|
notify:
|
|
- Restart zookeeper container
|
|
|
|
- name: Copying over zookeeper instance id
|
|
template:
|
|
src: "myid.j2"
|
|
dest: "{{ node_config_directory }}/{{ item.key }}/myid"
|
|
mode: "0660"
|
|
become: true
|
|
when:
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.value.enabled | bool
|
|
with_dict: "{{ zookeeper_services }}"
|
|
notify:
|
|
- Restart zookeeper container
|