Remove netdata playbooks as they are not necessary anymore.

This commit is contained in:
packetcat 2022-07-04 17:35:05 -04:00
parent 923f7595a0
commit 0a1133cebd
3 changed files with 0 additions and 38 deletions

View File

@ -1,9 +0,0 @@
[global]
bind socket to IP = 127.0.0.1
access log = none
# disable the local database
memory mode = none
[health]
# disable health checks
enabled = no

View File

@ -1,23 +0,0 @@
---
# This role installs netdata on a node and configures it to send data to the collector
- name: Install netdata
shell: bash <(curl -Ss https://my-netdata.io/kickstart.sh) --dont-wait --dont-start-it
args:
executable: /bin/bash
- name: Copy main netdata config file
copy:
src: netdata.conf
dest: /etc/netdata/netdata.conf
backup: yes
- name: Copy netdata stream config
copy:
src: stream.conf
dest: /etc/netdata/stream.conf
backup: yes
- name: Start netdata service and ensure it starts on boot
systemd:
name: netdata
state: restarted
enabled: yes
masked: no

View File

@ -1,6 +0,0 @@
- name: Install netdata client
hosts: netdata-client
user: root
roles:
- netdata-client