https://github.com/sansible/kibana
See https://github.com/sansible/sansible for more information
https://github.com/sansible/kibana
ansible ansible-role ansible-roles kibana
Last synced: 9 months ago
JSON representation
See https://github.com/sansible/sansible for more information
- Host: GitHub
- URL: https://github.com/sansible/kibana
- Owner: sansible
- License: mit
- Created: 2016-05-09T19:57:29.000Z (about 10 years ago)
- Default Branch: develop
- Last Pushed: 2020-04-03T12:26:15.000Z (about 6 years ago)
- Last Synced: 2025-04-08T10:41:38.287Z (about 1 year ago)
- Topics: ansible, ansible-role, ansible-roles, kibana
- Language: Makefile
- Homepage:
- Size: 32.2 KB
- Stars: 3
- Watchers: 8
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kibana
Master: [](https://travis-ci.org/sansible/kibana)
Develop: [](https://travis-ci.org/sansible/kibana)
* [Installation and Dependencies](#installation-and-dependencies)
* [Tags](#tags)
* [Examples](#examples)
This role installs Kibana.
For more information on Kibana please visit [elastic kibana](https://www.elastic.co/products/kibana).
**Note** Supports Kibana 4
## Installation and Dependencies
To install run `ansible-galaxy install sansible.kibana` or add this to your
`roles.yml`
```YAML
- name: sansible.kibana
version: v2.0
```
and run `ansible-galaxy install -p ./roles -r roles.yml`
## Tags
This role uses two tags: **build** and **configure**
* `build` - Installs Kibana and all its dependencies.
* `configure` - Configure and ensures that the Kibana service is running.
## Examples
To install the defaul version (4.1.2):
```YAML
- name: Kibana
hosts: "{{ hosts }}"
roles:
- role: kibana
```
To install RC 5
```YAML
- name: Kibana
hosts: "{{ hosts }}"
roles:
- role: kibana
sansible_kibana_tarball: "kibana-5.0.0-rc1-linux-x86_64"
sansible_kibana_download_base_url: https://artifacts.elastic.co/downloads/kibana/
sansible_kibana_version: 5.0.0-rc1
```
To install a specific version:
```YAML
- name: Kibana
hosts: "{{ hosts }}"
roles:
- role: kibana
kibana:
sansible_kibana_tarball: kibana-4.5.2-linux-x64
sansible_kibana_version: 4.5.2
```