b5d1e4b457
Currently, policy.json is put in "{{ node_config_directory }}/{{ service_name }}" in target nodes. Relocation policy.json to "{{ node_config_directory }}/{{ item }}" with item is corresponding service compoment config directory. Currently, the policy.json is copied to all services, but it should be reviewed and left only in neccesary service (at many cases, only API service needs that). Redundant files will be removed in follow up patchset. Change-Id: I0e997dccf4ec438c9c0436db71ec2fd06650f50d Closes-Bug: #1639686
45 lines
1.6 KiB
YAML
45 lines
1.6 KiB
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item.service }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
when: inventory_hostname in groups[item.group]
|
|
with_items: "{{ glance_service_groups }}"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item.service }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item.service }}/config.json"
|
|
when: inventory_hostname in groups[item.group]
|
|
with_items: "{{ glance_service_groups }}"
|
|
|
|
- name: Copying over glance-*.conf
|
|
merge_configs:
|
|
vars:
|
|
service_name: "{{ item.service }}"
|
|
sources:
|
|
- "{{ role_path }}/templates/{{ item.service }}.conf.j2"
|
|
- "{{ node_custom_config }}/global.conf"
|
|
- "{{ node_custom_config }}/database.conf"
|
|
- "{{ node_custom_config }}/messaging.conf"
|
|
- "{{ node_custom_config }}/glance.conf"
|
|
- "{{ node_custom_config }}/glance/{{ item.service }}.conf"
|
|
- "{{ node_custom_config }}/glance/{{ inventory_hostname }}/{{ item.service }}.conf"
|
|
dest: "{{ node_config_directory }}/{{ item.service }}/{{ item.service }}.conf"
|
|
when: inventory_hostname in groups[item.group]
|
|
with_items: "{{ glance_service_groups }}"
|
|
|
|
- name: Check if policies shall be overwritten
|
|
local_action: stat path="{{ node_custom_config }}/glance/policy.json"
|
|
register: glance_policy
|
|
|
|
- name: Copying over existing policy.json
|
|
template:
|
|
src: "{{ node_custom_config }}/glance/policy.json"
|
|
dest: "{{ node_config_directory }}/{{ item.service }}/policy.json"
|
|
when:
|
|
- inventory_hostname in groups[item.group]
|
|
- glance_policy.stat.exists
|
|
with_items: "{{ glance_service_groups }}"
|