playbook_netdata/netdata.yml

27 lines
649 B
YAML

---
###########################################################################
#
# This is the top level playbook for the 'netdata' role.
#
# This will install netdata on the target host, using the 'kickstart.sh' method.
#
###########################################################################
#
# This playbook can be run using the following command line;
#
# ansible-playbook -i <inventory file | IP,> netdata.yml
#
# ie,
# ansible-playbook -i 192.168.0.101, netdata.yml
#
###########################################################################
- hosts: all
gather_facts: true
remote_user: root
roles:
- role: netdata
# EOF