From 4cd31136eb5c87488bce3387818fea2f7b351b61 Mon Sep 17 00:00:00 2001 From: Pinghao Wu Date: Mon, 3 Feb 2025 14:57:57 +0800 Subject: [PATCH] prometheus: fix probe endpoint --- monitoring/prometheus/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/monitoring/prometheus/deployment.yaml b/monitoring/prometheus/deployment.yaml index 4538c85..0618850 100644 --- a/monitoring/prometheus/deployment.yaml +++ b/monitoring/prometheus/deployment.yaml @@ -34,7 +34,7 @@ spec: readinessProbe: httpGet: port: metrics - path: /-/healthy + path: /-/ready volumeMounts: - name: data mountPath: /prometheus @@ -56,7 +56,7 @@ spec: readinessProbe: httpGet: port: sidecar-metrics - path: /-/healthy + path: /-/ready volumeMounts: - name: data mountPath: /prometheus -- 2.45.2