9786fd646f
Co-Authored-By: Marc Koderer <marc@koderer.com> Change-Id: I16bab281f2eca341b7a649f766bae5f2cf18a117 Partially-Implements: blueprint enable-manila-containers
37 lines
977 B
YAML
37 lines
977 B
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"
|
|
- "/etc/kolla/config/global.conf"
|
|
- "/etc/kolla/config/database.conf"
|
|
- "/etc/kolla/config/messaging.conf"
|
|
- "/etc/kolla/config/manila.conf"
|
|
- "/etc/kolla/config/manila/{{ item }}.conf"
|
|
dest: "{{ node_config_directory }}/{{ item }}/manila.conf"
|
|
with_items:
|
|
- "manila-api"
|
|
- "manila-scheduler"
|
|
- "manila-share"
|