Add the node_exporter role

This commit is contained in:
Alexander Gorelyshev
2025-12-17 12:26:46 +04:00
parent 87cf29448b
commit dce2de2145
12 changed files with 166 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
---
- name: "Enable and start the node_exporter service"
changed_when: false
ansible.builtin.systemd:
name: node_exporter
enabled: true
daemon_reload: true
state: restarted