An open API service indexing awesome lists of open source software.

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

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
```