ef1fd6b8c0
Allow operators to use their custom policy files. Avoid maintain policy files in kolla repos, only copying the files when an operator add their custom config. Implements: blueprint custom-policies Change-Id: Icf3c961b87cbc7a1f1dd2ffbfffcf271d151d862
49 lines
1.5 KiB
YAML
49 lines
1.5 KiB
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
with_items:
|
|
- "congress-api"
|
|
- "congress-policy-engine"
|
|
- "congress-datasource"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item }}/config.json"
|
|
with_items:
|
|
- "congress-api"
|
|
- "congress-policy-engine"
|
|
- "congress-datasource"
|
|
|
|
- name: Copying over congress.conf
|
|
merge_configs:
|
|
vars:
|
|
service_name: "{{ item }}"
|
|
sources:
|
|
- "{{ role_path }}/templates/congress.conf.j2"
|
|
- "{{ node_custom_config }}/global.conf"
|
|
- "{{ node_custom_config }}/database.conf"
|
|
- "{{ node_custom_config }}/messaging.conf"
|
|
- "{{ node_custom_config }}/congress.conf"
|
|
- "{{ node_custom_config }}/congress/{{ item }}.conf"
|
|
- "{{ node_custom_config }}/congress/{{ inventory_hostname }}/congress.conf"
|
|
dest: "{{ node_config_directory }}/{{ item }}/congress.conf"
|
|
with_items:
|
|
- "congress-api"
|
|
- "congress-policy-engine"
|
|
- "congress-datasource"
|
|
|
|
- name: Check if policies shall be overwritten
|
|
local_action: stat path="{{ node_custom_config }}/congress/policy.json"
|
|
register: congress_policy
|
|
|
|
- name: Copying over existing policy.json
|
|
template:
|
|
src: "{{ node_custom_config }}/congress/policy.json"
|
|
dest: "{{ node_config_directory }}/congress/policy.json"
|
|
when:
|
|
congress_policy.stat.exists
|