17fb37f075
Most of the changes in this PR are for style and to adapt the playbooks so that the system can operate on a multi-node cloud. Functional change includes the removal of mainline Java 8 in favor of OpenJDK 8. A site playbook was add to allow an operator to just run everything. Old tools that no longer function within the stack have been removed. Packetbeat was added to the install list Auditbeat was added to the install list All of the config files have been updated for the recent ElasticStack 6.x changes. Change-Id: I01200ad4772ff200b9c5c93f8f121145dfb88170 Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
56 lines
1.2 KiB
YAML
56 lines
1.2 KiB
YAML
---
|
|
- name: Install Kibana
|
|
hosts: kibana
|
|
become: true
|
|
vars_files:
|
|
- vars/variables.yml
|
|
tasks:
|
|
- include_tasks: common_task_install_elk_repo.yml
|
|
|
|
- name: Ensure Nginx is installed.
|
|
apt:
|
|
name: "{{ item }}"
|
|
state: present
|
|
update_cache: yes
|
|
with_items:
|
|
- nginx
|
|
- apache2-utils
|
|
- python-passlib
|
|
|
|
- name: create kibana user to access web interface
|
|
htpasswd:
|
|
path: "/etc/nginx/htpasswd.users"
|
|
name: "{{ kibana_username }}"
|
|
password: "{{ kibana_password }}"
|
|
owner: root
|
|
mode: 0644
|
|
|
|
- name: Drop Nginx default conf file
|
|
template:
|
|
src: templates/nginx_default.j2
|
|
dest: /etc/nginx/sites-available/default
|
|
|
|
- name: Enable and restart nginx
|
|
service:
|
|
name: "nginx"
|
|
enabled: true
|
|
state: restarted
|
|
|
|
- name: Ensure kibana is installed.
|
|
apt:
|
|
name: kibana
|
|
state: present
|
|
update_cache: yes
|
|
|
|
- name: Drop kibana conf file
|
|
template:
|
|
src: templates/kibana.yml.j2
|
|
dest: /etc/kibana/kibana.yml
|
|
mode: "0666"
|
|
|
|
- name: Enable and restart kibana
|
|
systemd:
|
|
name: "kibana"
|
|
enabled: true
|
|
state: restarted
|