1
0
Fork 0
mirror of https://gitlab.com/s3lph/ansible-collection-prometheus synced 2024-10-23 03:46:59 +02:00
ansible-collection-prometheus/roles/prometheus/tasks/main.yml
2020-11-13 10:36:46 +01:00

27 lines
597 B
YAML

---
- name: install prometheus and blackbox exporter
import_tasks: install.yml
tags:
- "role::prometheus"
- "role::prometheus:install"
- name: configure blackbox exporter
import_tasks: blackbox.yml
tags:
- "role::prometheus"
- "role::prometheus:blackbox"
- name: configure prometheus
import_tasks: prometheus.yml
tags:
- "role::prometheus"
- "role::prometheus:config"
# Some problems with "never" tag
#- name: flush prometheus time series database
# import_tasks: flush.yml
# tags:
# - "role::prometheus"
# - "role::prometheus:flush"
# - "never"