69 lines
2.1 KiB
YAML
69 lines
2.1 KiB
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
with_items:
|
|
- "manila-api"
|
|
- "manila-data"
|
|
- "manila-scheduler"
|
|
- "manila-share"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item }}/config.json"
|
|
with_items:
|
|
- "manila-api"
|
|
- "manila-data"
|
|
- "manila-scheduler"
|
|
- "manila-share"
|
|
|
|
- name: Copying over manila.conf
|
|
merge_configs:
|
|
vars:
|
|
service_name: "{{ item }}"
|
|
sources:
|
|
- "{{ role_path }}/templates/manila.conf.j2"
|
|
- "{{ node_custom_config }}/global.conf"
|
|
- "{{ node_custom_config }}/database.conf"
|
|
- "{{ node_custom_config }}/messaging.conf"
|
|
- "{{ node_custom_config }}/manila.conf"
|
|
- "{{ node_custom_config }}/manila/{{ item }}.conf"
|
|
- "{{ node_custom_config }}/manila/{{ inventory_hostname }}/manila.conf"
|
|
dest: "{{ node_config_directory }}/{{ item }}/manila.conf"
|
|
with_items:
|
|
- "manila-api"
|
|
- "manila-data"
|
|
- "manila-scheduler"
|
|
|
|
- name: Copying over manila-share.conf
|
|
merge_configs:
|
|
vars:
|
|
service_name: "{{ item }}"
|
|
sources:
|
|
- "{{ role_path }}/templates/manila.conf.j2"
|
|
- "{{ role_path }}/templates/manila-share.conf.j2"
|
|
- "{{ node_custom_config }}/global.conf"
|
|
- "{{ node_custom_config }}/database.conf"
|
|
- "{{ node_custom_config }}/messaging.conf"
|
|
- "{{ node_custom_config }}/manila.conf"
|
|
- "{{ node_custom_config }}/{{ item }}.conf"
|
|
- "{{ node_custom_config }}/manila/{{ item }}.conf"
|
|
- "{{ node_custom_config }}/manila/{{ inventory_hostname }}/manila.conf"
|
|
dest: "{{ node_config_directory }}/{{ item }}/manila.conf"
|
|
with_items:
|
|
- "manila-share"
|
|
|
|
- name: Check if policies shall be overwritten
|
|
local_action: stat path="{{ node_custom_config }}/manila/policy.json"
|
|
register: manila_policy
|
|
|
|
- name: Copying over existing policy.json
|
|
template:
|
|
src: "{{ node_custom_config }}/manila/policy.json"
|
|
dest: "{{ node_config_directory }}/manila/policy.json"
|
|
when:
|
|
manila_policy.stat.exists
|