You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/roles/prometheus/tasks/main.yml

13 lines
251 B
YAML

---
- name: Install Prometheus Components
apt:
name:
- prometheus
- prometheus-alertmanager
- prometheus-pushgateway
state: latest
update_cache: true
register: apt_result
retries: 3
until: apt_result is succeeded