blob: eb2b94cb261d24e472d8bfa013a4388c1ac5e3ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---
# file: roles/prometheus_exporter/defaults/main.yaml
# Inst - Exporters.
ne_packages: "{{ ne_packages_by_distro[ansible_distribution | lower][ansible_machine] }}"
ne_packages_by_distro:
ubuntu:
aarch64: "http://ports.ubuntu.com/pool/universe/p/prometheus-node-exporter/prometheus-node-exporter_1.0.1+ds-1_arm64.deb"
x86_64: "http://archive.ubuntu.com/ubuntu/pool/universe/p/prometheus-node-exporter/prometheus-node-exporter_1.0.1+ds-1_amd64.deb"
be_packages: "{{ be_packages_by_distro[ansible_distribution | lower][ansible_machine] }}"
be_packages_by_distro:
ubuntu:
aarch64: "http://ports.ubuntu.com/pool/universe/p/prometheus-blackbox-exporter/prometheus-blackbox-exporter_0.17.0+ds-1_arm64.deb"
x86_64: "http://archive.ubuntu.com/ubuntu/pool/universe/p/prometheus-blackbox-exporter/prometheus-blackbox-exporter_0.17.0+ds-1_amd64.deb"
|