https://github.com/bsedin/ansible-kibana
https://github.com/bsedin/ansible-kibana
ansible-role docker elastic-stack kibana
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bsedin/ansible-kibana
- Owner: bsedin
- License: mit
- Created: 2018-03-09T13:04:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-08-12T16:07:36.000Z (almost 7 years ago)
- Last Synced: 2025-10-09T06:50:54.686Z (8 months ago)
- Topics: ansible-role, docker, elastic-stack, kibana
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Elasticsearch role for ansible
Create `./library` directory in your ansible project:
```
mkdir ./library
```
And configure `ansible.cfg`:
```
[defaults]
roles_path = ./library
```
Add submodule:
```
git submodule add git@github.com:kressh/ansible-kibana.git library/kibana
```
Use role:
```yaml
---
- hosts: infra01.yourserver.io
remote_user: ansible
become: true
roles:
- kibana
```