Initial Ansible automation for homelab infrastructure

This commit is contained in:
Adyrem
2026-05-13 16:17:04 +02:00
commit e9b6bf9e9a
24 changed files with 583 additions and 0 deletions
@@ -0,0 +1,11 @@
---
- name: Install prometheus-node-exporter
community.general.pacman:
name: prometheus-node-exporter
state: present
- name: Enable and start node_exporter
systemd:
name: prometheus-node-exporter
enabled: true
state: started