From be703e0c8c1c667f8cd4c517b72f700600f45848 Mon Sep 17 00:00:00 2001 From: Povilas Vaitkus Date: Fri, 13 Dec 2024 09:56:39 +0200 Subject: [PATCH] [prometheus-stackdriver-exporter]: change liveness/readiness probe paths --- .../prometheus-stackdriver-exporter/templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/prometheus-stackdriver-exporter/templates/deployment.yaml b/charts/prometheus-stackdriver-exporter/templates/deployment.yaml index 800b745e2815..b95b94f92d4d 100644 --- a/charts/prometheus-stackdriver-exporter/templates/deployment.yaml +++ b/charts/prometheus-stackdriver-exporter/templates/deployment.yaml @@ -116,13 +116,13 @@ spec: name: http livenessProbe: httpGet: - path: /health + path: / port: http initialDelaySeconds: 30 timeoutSeconds: 10 readinessProbe: httpGet: - path: /health + path: / port: http initialDelaySeconds: 10 timeoutSeconds: 10