From 6c1ddc618e5859835bbf7ac7a3e6e4b2ae2de341 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 latest 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..68e3e398c1 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:v2.55.0 COPY /prometheus.yml /etc/prometheus/prometheus.yml