A brief description of the role goes here.
There are no special requirements to this role
Variables that can be customised in this role are documented in defaults/main.yml
This role has no other dependencies
$ cd path/to/playbook/root
$ cat >> requirements.yaml <<EOF
- src: "https://github.com/sitewards/ansible-role-fluentbit.git"
version: "master" # <----- Update this to a stable version
name: "sitewards.fluentbit"
EOF
$ ansible-galaxy install -r requirements.yaml
$ cd path/to/playbook/root
$ mkdir roles/
$ git submodule add https://github.com/sitewards/ansible-role-fluentbit.git sitewards.fluentbit
Include this in another ansible playbook. For sample, consider a generic server playbook:
---
# $PLAYBOOK_ROOT/server.yaml
- name: "server"
hosts: all
become: true
become_user: "root"
Add the reference for the role:
# $PLAYBOOK_ROOT/server.yaml
# ...
become_user: "root"
roles
- "sitewards.fluentbit"
This should work!
OSL-3.0
- Behrouz Abbasi
- Andrew Howden