50 lines
1.4 KiB
YAML
50 lines
1.4 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
|
|
vars:
|
|
service_name: "{{ item }}"
|
|
merge_configs:
|
|
sources:
|
|
- "{{ role_path }}/templates/murano.conf.j2"
|
|
- "{{ node_custom_config }}/global.conf"
|
|
- "{{ node_custom_config }}/database.conf"
|
|
- "{{ node_custom_config }}/messaging.conf"
|
|
- "{{ node_custom_config }}/murano.conf"
|
|
- "{{ node_custom_config }}/murano/{{ item }}.conf"
|
|
- "{{ node_custom_config }}/murano/{{ inventory_hostname }}/murano.conf"
|
|
dest: "{{ node_config_directory }}/{{ item }}/murano.conf"
|
|
with_items:
|
|
- "murano-api"
|
|
- "murano-engine"
|
|
|
|
- name: Check if policies shall be overwritten
|
|
local_action: stat path="{{ node_custom_config }}/murano/policy.json"
|
|
run_once: True
|
|
register: murano_policy
|
|
|
|
- name: Copying over existing policy.json
|
|
template:
|
|
src: "{{ node_custom_config }}/murano/policy.json"
|
|
dest: "{{ node_config_directory }}/{{ item }}/policy.json"
|
|
with_items:
|
|
- "murano-api"
|
|
- "murano-engine"
|
|
when:
|
|
murano_policy.stat.exists
|