12 lines
250 B
YAML
12 lines
250 B
YAML
|
|
---
|
||
|
|
- name: Install dependencies
|
||
|
|
apt:
|
||
|
|
name: [python3-pip, prometheus-node-exporter]
|
||
|
|
state: present
|
||
|
|
|
||
|
|
- name: Copy Prometheus config
|
||
|
|
template:
|
||
|
|
src: prometheus.yml.j2
|
||
|
|
dest: /etc/prometheus/prometheus.yml
|
||
|
|
notify: restart prometheus
|