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
35 lines
1.1 KiB
YAML
35 lines
1.1 KiB
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
with_items:
|
|
- "murano-api"
|
|
- "murano-engine"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item }}/config.json"
|
|
with_items:
|
|
- "murano-api"
|
|
- "murano-engine"
|
|
|
|
- name: Copying over murano.conf
|
|
merge_configs:
|
|
vars:
|
|
service_name: "{{ item }}"
|
|
sources:
|
|
- "{{ role_path }}/templates/murano.conf.j2"
|
|
- "{{ node_config_directory }}/config/global.conf"
|
|
- "{{ node_config_directory }}/config/database.conf"
|
|
- "{{ node_config_directory }}/config/messaging.conf"
|
|
- "{{ node_config_directory }}/config/murano.conf"
|
|
- "{{ node_config_directory }}/config/murano/{{ item }}.conf"
|
|
- "{{ node_config_directory }}/config/murano/{{ inventory_hostname }}/murano.conf"
|
|
dest: "{{ node_config_directory }}/{{ item }}/murano.conf"
|
|
with_items:
|
|
- "murano-api"
|
|
- "murano-engine"
|