Initial Ansible automation for homelab infrastructure

This commit is contained in:
Adyrem
2026-05-13 16:17:04 +02:00
commit c23274c7ab
24 changed files with 583 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
---
- name: Deploy Gitea
hosts: gitea_servers
roles:
- node_exporter
- promtail
- gitea
+7
View File
@@ -0,0 +1,7 @@
---
- name: Deploy monitoring stack
hosts: monitoring_servers
roles:
- node_exporter
- promtail
- monitoring
+17
View File
@@ -0,0 +1,17 @@
---
- name: Common setup for all VMs
hosts: all
roles:
- common
- node_exporter
- promtail
- name: Monitoring stack
hosts: monitoring_servers
roles:
- monitoring
- name: Gitea
hosts: gitea_servers
roles:
- gitea