initial checkin

This commit is contained in:
Radar231 2023-12-11 16:21:43 -05:00
commit abd0b8dfa6
2 changed files with 40 additions and 0 deletions

14
README.md Normal file
View File

@ -0,0 +1,14 @@
# netdata playbook
## Introduction
This is the top level playbook for the 'netdata' role, and 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

26
netdata.yml Normal file
View File

@ -0,0 +1,26 @@
---
###########################################################################
#
# 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