1f371e2717
This type of per node configuration is required to support things like availability zones for nova. As always, if this file doesnt exist it doesnt get used so this change is safe. TrivialFix Change-Id: Iff8172af522c2c96e5f2c173b24a5dfd4d522ed2
35 lines
986 B
YAML
35 lines
986 B
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
with_items:
|
|
- "magnum-api"
|
|
- "magnum-conductor"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item }}/config.json"
|
|
with_items:
|
|
- "magnum-api"
|
|
- "magnum-conductor"
|
|
|
|
- name: Copying over magnum.conf
|
|
merge_configs:
|
|
vars:
|
|
service_name: "magnum-api"
|
|
sources:
|
|
- "{{ role_path }}/templates/magnum.conf.j2"
|
|
- "/etc/kolla/config/global.conf"
|
|
- "/etc/kolla/config/database.conf"
|
|
- "/etc/kolla/config/messaging.conf"
|
|
- "/etc/kolla/config/magnum.conf"
|
|
- "/etc/kolla/config/magnum/{{ item }}.conf"
|
|
- "/etc/kolla/config/magnum/{{ inventory_hostname }}/magnum.conf"
|
|
dest: "{{ node_config_directory }}/{{ item }}/magnum.conf"
|
|
with_items:
|
|
- "magnum-api"
|
|
- "magnum-conductor"
|