2024-07-09 14:53:38 -05:00
|
|
|
# vim:ft=ansible:
|
2024-07-09 18:03:39 -05:00
|
|
|
- name: deploy prometheus
|
|
|
|
block:
|
|
|
|
- name: ensure prometheus dirs
|
|
|
|
ansible.builtin.file:
|
|
|
|
state: directory
|
|
|
|
owner: 5476
|
|
|
|
group: 5476
|
|
|
|
mode: "0750"
|
|
|
|
path: "{{ item }}"
|
|
|
|
with_items:
|
|
|
|
- /data/prometheus/config
|
|
|
|
- /data/prometheus/data
|
|
|
|
notify: restart prometheus container
|
|
|
|
- name: template out configuration file
|
|
|
|
ansible.builtin.template:
|
|
|
|
src: prometheus.yml.j2
|
|
|
|
owner: 5476
|
|
|
|
group: 5476
|
|
|
|
mode: "0640"
|
|
|
|
dest: /data/prometheus/config/prometheus.yml
|
|
|
|
notify: restart prometheus container
|
|
|
|
- name: docker deploy prometheus
|
|
|
|
community.docker.docker_container:
|
|
|
|
name: prometheus
|
|
|
|
image: prom/prometheus:latest
|
2024-07-17 00:21:36 -05:00
|
|
|
restart_policy: unless-stopped
|
2024-07-09 18:03:39 -05:00
|
|
|
user: 5476:5476
|
|
|
|
env:
|
|
|
|
TZ: "America/Chicago"
|
|
|
|
networks:
|
|
|
|
- name: web
|
|
|
|
aliases: [ "prometheus" ]
|
|
|
|
volumes:
|
|
|
|
- /data/prometheus/config:/etc/prometheus
|
|
|
|
- /data/prometheus/data:/prometheus
|
|
|
|
- name: deploy prometheus blackbox
|
|
|
|
block:
|
|
|
|
- name: ensure blackbox dirs
|
|
|
|
ansible.builtin.file:
|
|
|
|
state: directory
|
|
|
|
owner: 5476
|
|
|
|
group: 5476
|
|
|
|
mode: "0750"
|
|
|
|
path: /data/prometheus/blackbox
|
|
|
|
notify: restart blackbox container
|
|
|
|
- name: template out configuration file
|
|
|
|
ansible.builtin.template:
|
|
|
|
src: blackbox.yml.j2
|
|
|
|
owner: 5476
|
|
|
|
group: 5476
|
|
|
|
mode: "0640"
|
|
|
|
dest: /data/prometheus/blackbox/blackbox.yml
|
|
|
|
notify: restart blackbox container
|
|
|
|
- name: docker deploy prometheus blackbox
|
|
|
|
community.docker.docker_container:
|
|
|
|
name: prometheus-blackbox
|
|
|
|
image: quay.io/prometheus/blackbox-exporter:latest
|
2024-07-17 00:21:36 -05:00
|
|
|
restart_policy: unless-stopped
|
2024-07-09 18:03:39 -05:00
|
|
|
user: 5476:5476
|
|
|
|
command:
|
|
|
|
- '--config.file=/config/blackbox.yml'
|
|
|
|
networks:
|
|
|
|
- name: web
|
|
|
|
aliases: [ "blackbox" ]
|
|
|
|
volumes:
|
|
|
|
- /data/prometheus/blackbox:/config
|