https://github.com/bsedin/ansible-fluentd
https://github.com/bsedin/ansible-fluentd
ansible-role docker elasticsearch fluentd logging
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bsedin/ansible-fluentd
- Owner: bsedin
- License: mit
- Created: 2018-03-09T13:06:09.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-09-02T09:39:44.000Z (almost 7 years ago)
- Last Synced: 2025-10-26T21:26:01.984Z (8 months ago)
- Topics: ansible-role, docker, elasticsearch, fluentd, logging
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fluentd 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-fluentd.git library/fluentd
```
Use role:
```yaml
---
- hosts: appservers
remote_user: ansible
become: true
roles:
- fluentd
```