prometheus/tasks/server/prometheus.yml

71 lines
1.9 KiB
YAML
Raw Normal View History

2021-04-29 18:53:56 +02:00
---
2022-11-14 10:58:21 +01:00
- name: 'prometheus | server | assert | check mandatory vars are defined'
2021-05-25 18:25:22 +02:00
assert:
that:
- "prometheus_server_monitor is defined"
tags:
- prometheus
- name: 'prometheus | server | create docker network'
2021-04-29 18:53:56 +02:00
docker_network:
name: 'prometheus'
tags:
- prometheus
2022-11-14 10:58:21 +01:00
- name: 'prometheus | server | create docker volume data'
2021-04-29 18:53:56 +02:00
docker_volume:
name: prometheus_data
register: register_docker_volume_prometheus__prometheus_data
tags:
- prometheus
2021-05-25 18:25:22 +02:00
- name: 'prometheus | server | create prometheus directory to /etc'
2021-04-29 18:53:56 +02:00
file:
path: /etc/prometheus
state: directory
mode: '0755'
tags:
- prometheus
2021-05-25 18:25:22 +02:00
- name: 'prometheus | server | copy config prometheus yml'
2021-04-29 18:53:56 +02:00
template:
src: conf/prometheus.yml.j2
2021-04-29 18:53:56 +02:00
dest: /etc/prometheus/prometheus.yml
owner: root
group: root
mode: 0644
tags:
- prometheus
2021-05-26 12:06:05 +02:00
notify:
2022-11-14 10:58:21 +01:00
- 'prometheus | server | restart container'
2021-04-29 18:53:56 +02:00
2021-05-25 18:25:22 +02:00
- name: 'prometheus | server | deploy container'
2021-04-29 18:53:56 +02:00
docker_container:
name: prometheus
hostname: '{{ inventory_hostname }}'
image: prom/prometheus:{{ prometheus_server_version }}
2021-04-29 18:53:56 +02:00
volumes:
- /etc/prometheus/:/etc/prometheus/
- prometheus_data:/prometheus
command:
- '--config.file=/etc/prometheus/prometheus.yml'
- '--storage.tsdb.path=/prometheus'
2021-10-01 17:13:20 +02:00
- '--storage.tsdb.retention.time={{ prometheus_retention_time }}'
2021-04-29 18:53:56 +02:00
- '--web.console.libraries=/usr/share/prometheus/console_libraries'
- '--web.console.templates=/usr/share/prometheus/consoles'
- '--web.enable-admin-api'
networks:
- { name: prometheus }
ports:
- "9090:9090"
log_driver: syslog
log_options:
tag: docker_prometheus
restart_policy: 'unless-stopped'
2022-11-11 23:51:52 +01:00
pull: '{{ prometheus_docker_pull }}'
2021-10-01 16:20:55 +02:00
etc_hosts: '{{ prometheus_nodes_ip }}'
2021-05-25 18:25:22 +02:00
tags:
2021-04-29 18:53:56 +02:00
- prometheus
2021-05-26 12:06:05 +02:00
notify:
2022-11-14 10:58:21 +01:00
- 'prometheus | server | restart container'