blob: 900157f483a9035377529f5d7d4d53d9efb4f9cf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
- name: install prometheus
ansible.builtin.package:
name:
- prometheus
- node_exporter
state: present
- name: generate prometheus configuration
ansible.builtin.template:
src: prometheus.conf.j2
dest: "{{ prometheus_configuration_file }}"
owner: 0
group: 0
mode: 0644
- name: enable and restart prometheus services
ansible.builtin.service:
name: "{{ item }}"
state: restarted
enabled: true
loop:
- prometheus
- node_exporter
|