2da010a7b9
An operator may want to specify the location of custom config files so that kolla can detect their location and merge them with the default configs generated. Partially implements: blueprint multi-project-config Change-Id: Ibfb38d07a36dfa7fe25381adc34cc1d3cbe7d1e1
32 lines
1.2 KiB
YAML
32 lines
1.2 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 }}"
|