Added a BUNCH of configs.

This commit is contained in:
2026-05-17 00:46:26 +02:00
parent 46e2494a6d
commit 292477d516
20 changed files with 22525 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
---
- name: Install monitoring packages
hosts: monitoring_targets
become: true
tasks:
- name: Install node exporter
ansible.builtin.apt:
name:
- prometheus-node-exporter
state: present
update_cache: true
- name: Enable and start node exporter
ansible.builtin.systemd:
name: prometheus-node-exporter
enabled: true
state: started