ansible-infra/playbooks/templates/chaosknoten/configs/grafana/compose.yaml.j2

35 lines
933 B
Plaintext
Raw Normal View History

2023-12-19 18:37:24 +01:00
---
version: "3.6"
services:
2024-01-24 19:12:43 +01:00
2023-12-19 18:37:24 +01:00
prometheus:
image: prom/prometheus
container_name: prometheus
command:
- '--config.file=/etc/prometheus/prometheus.yml'
ports:
- 9090:9090
restart: unless-stopped
volumes:
2024-01-24 19:12:43 +01:00
- ./configs/prometheus.yml:/etc/prometheus/prometheus.yml
2023-12-19 18:37:24 +01:00
- prom_data:/prometheus
2024-01-24 19:12:43 +01:00
2023-12-19 18:37:24 +01:00
grafana:
image: grafana/grafana
container_name: grafana
ports:
- 3000:3000
restart: unless-stopped
environment:
- GF_SECURITY_ADMIN_USER=admin
- "GF_SECURITY_ADMIN_PASSWORD={{ lookup("community.general.passwordstore", "noc/vm-secrets/chaosknoten/grafana/GF_SECURITY_ADMIN_PASSWORD", create=false, missing="error") }}"
volumes:
2024-01-24 19:12:43 +01:00
- ./configs/grafana.ini:/etc/grafana/grafana.ini
- ./configs/grafana-datasource.yml:/etc/grafana/provisioning/datasources/datasource.yml
2024-01-24 17:22:35 +01:00
- graf_data:/var/lib/grafana
2023-12-19 18:37:24 +01:00
volumes:
2024-01-24 17:22:35 +01:00
graf_data: {}
2023-12-19 18:37:24 +01:00
prom_data: {}