Infra: upgrade monitoring solution
[csit.git] / fdio.infra.ansible / roles / prometheus_exporter / defaults / main.yaml
1 ---
2 # file: roles/prometheus_exporter/defaults/main.yaml
3
4 # Inst - Exporters.
5 packages: "{{ packages_base + packages_by_distro[ansible_distribution | lower] + packages_by_arch[ansible_machine] }}"
6
7 packages_base:
8   - []
9
10 packages_by_distro:
11   ubuntu:
12     - "python3-docker"
13     - "python3-dockerpty"
14
15 packages_by_arch:
16   aarch64:
17     - []
18   x86_64:
19     - []
20
21 ne_image: "{{ ne_image_by_arch[ansible_machine] }}"
22
23 ne_image_by_arch:
24   aarch64: "prom/node-exporter:v1.2.0"
25   x86_64: "prom/node-exporter:v1.2.0"
26
27 be_image: "{{ be_image_by_arch[ansible_machine] }}"
28
29 be_image_by_arch:
30   aarch64: "prom/blackbox-exporter:v0.19.0"
31   x86_64: "prom/blackbox-exporter:v0.19.0"