ef02b53e0e
This work will help Elastic/Kibana from processing our UUID's into multiple strings. Before this work, Kibana would display parts of our UUID since they contained '-'. If the user installs ELK from Browbeat they will have these templates installed for them. If the user wants to install these templates into a existing Elasticsearch they can with the es-template.yml Change-Id: I04165c50dfac9cbd1f05b4bcd2ac78fbdb4da0a2
21 lines
503 B
YAML
21 lines
503 B
YAML
---
|
|
#
|
|
# Playbook to install the ELK stack for browbeat
|
|
#
|
|
|
|
- hosts: elk
|
|
remote_user: root
|
|
roles:
|
|
- { role: epel }
|
|
- { role: elasticsearch }
|
|
- { role: fluentd, when: (logging_backend == 'fluentd') }
|
|
- { role: logstash, when: ((logging_backend is none) or (logging_backend == 'logstash')) }
|
|
- { role: nginx }
|
|
- { role: curator, when: install_curator_tool }
|
|
- { role: kibana }
|
|
|
|
- hosts: localhost
|
|
remote_user: "{{ local_remote_user }}"
|
|
roles:
|
|
- { role: es-template }
|