41681ebcbd
* Ignore errors on install of sysstat * Fixes for ELK playbook (if SELinux is disabled) * Doc updates Change-Id: I4ac94e3a3cb5b2558a727e8761e2506ba0b62df2
23 lines
544 B
YAML
23 lines
544 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 }
|
|
environment: "{{proxy_env}}"
|
|
|
|
- hosts: localhost
|
|
connection: local
|
|
roles:
|
|
- { role: es-template }
|
|
environment: "{{proxy_env}}"
|