vm-ansible/roles/common/tasks/node-exporter.yaml
Torma Kristóf f7ffff3b8d
Some checks reported errors
continuous-integration/drone/push Build was killed
add exporters
2022-05-29 15:15:02 +02:00

16 lines
263 B
YAML

---
- name: "Install node exporter"
apt:
update_cache: yes
state: present
name:
- prometheus-node-exporter
- name: Allow node-exporter via ufw
community.general.ufw:
rule: allow
port: 9100
proto: tcp
src: 192.168.69.0/24
...