8ec7811037
Changes location of Horizon log, they will be stored on common log volume kolla_logs. Change-Id: Ie9d56999a83efd05ab7c3dcb00b4dc42c9bce8f8 Closes-Bug: 1560250
28 lines
678 B
YAML
28 lines
678 B
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
with_items:
|
|
- "horizon"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item }}/config.json"
|
|
with_items:
|
|
- "horizon"
|
|
|
|
- name: Copying over horizon.conf
|
|
template:
|
|
src: "{{ item }}.conf.j2"
|
|
dest: "{{ node_config_directory }}/{{ item }}/{{ item }}.conf"
|
|
with_items:
|
|
- "horizon"
|
|
|
|
- name: Copying over local_settings
|
|
template:
|
|
src: "local_settings.j2"
|
|
dest: "{{ node_config_directory }}/horizon/local_settings"
|