December 2017
Intermediate to advanced
364 pages
7h 30m
English
The following playbook will install Kibana. By default we are not making any changes in Kibana, as it works out of the box with Elasticsearch:
- name: adding elastic gpg key for kibana apt_key: url: "https://artifacts.elastic.co/GPG-KEY-elasticsearch" state: present- name: adding the elastic repository apt_repository: repo: "deb https://artifacts.elastic.co/packages/5.x/apt stable main" state: present- name: installing kibana apt: name: "{{ item }}" state: present update_cache: yes with_items: - kibana- name: adding kibana to the startup programs service: name: kibana enabled: yes notify: - start kibana
Read now
Unlock full access