From 83962ddcfc582e95b851490a67ebf95737adba76 Mon Sep 17 00:00:00 2001 From: vprashar2929 Date: Fri, 1 Nov 2024 19:17:46 +0530 Subject: [PATCH] chore(compose): switch to stable Prometheus version This commit updates the compose config to use a stable Prometheus version instead of the main development version. Additionally, it resolves an issue where Prometheus could not scrape metrics from Scaphandre, which was failing due to an invalid `Content-Type` header in Scaphandre's response. Signed-off-by: vprashar2929 --- manifests/compose/monitoring/prometheus/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/compose/monitoring/prometheus/Dockerfile b/manifests/compose/monitoring/prometheus/Dockerfile index 8f74eb01dd..99c3a7c392 100644 --- a/manifests/compose/monitoring/prometheus/Dockerfile +++ b/manifests/compose/monitoring/prometheus/Dockerfile @@ -1,3 +1,3 @@ -FROM quay.io/prometheus/prometheus:main +FROM quay.io/prometheus/prometheus:latest COPY /prometheus.yml /etc/prometheus/prometheus.yml