792666dd79
Part of ELK stack. Includes Dockerfiles for both Centos and Ubuntu. Change-Id: I9f76adf084cd4f68e29326112b76ffd02b5adada Partially-implements: blueprint central-logging-service
23 lines
561 B
YAML
23 lines
561 B
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
with_items:
|
|
- "elasticsearch"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item }}/config.json"
|
|
with_items:
|
|
- "elasticsearch"
|
|
|
|
- name: Copying over elasticsearch.yml
|
|
template:
|
|
src: "elasticsearch.yml.j2"
|
|
dest: "{{ node_config_directory }}/{{ item }}/{{ item }}.yml"
|
|
with_items:
|
|
- "elasticsearch"
|