3091f94a07
Change-Id: Ia5ece5f02841aebc1bdb0950b3f827e1cee359e5 Closes-Bug: #1620721 Closes-Bug: #1614033
55 lines
1.7 KiB
YAML
55 lines
1.7 KiB
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
with_items:
|
|
- "manila-api"
|
|
- "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-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-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"
|