0c9debe893
Change-Id: I75b58248bfc4e86cace75faa82526d55a9ebbdbf Partially-Implements: blueprint sahara-role
35 lines
1019 B
YAML
35 lines
1019 B
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
with_items:
|
|
- "sahara-api"
|
|
- "sahara-engine"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item }}/config.json"
|
|
with_items:
|
|
- "sahara-api"
|
|
- "sahara-engine"
|
|
|
|
- name: Copying over sahara.conf
|
|
merge_configs:
|
|
vars:
|
|
service_name: "{{ item }}"
|
|
sources:
|
|
- "{{ role_path }}/templates/sahara.conf.j2"
|
|
- "{{ node_custom_config }}/global.conf"
|
|
- "{{ node_custom_config }}/database.conf"
|
|
- "{{ node_custom_config }}/messaging.conf"
|
|
- "{{ node_custom_config }}/sahara.conf"
|
|
- "{{ node_custom_config }}/sahara/{{ item }}.conf"
|
|
- "{{ node_custom_config }}/sahara/{{ inventory_hostname }}/sahara.conf"
|
|
dest: "{{ node_config_directory }}/{{ item }}/sahara.conf"
|
|
with_items:
|
|
- "sahara-api"
|
|
- "sahara-engine"
|