From 606cf52d5ffaecf06daf9a9cb121445ed79d580c Mon Sep 17 00:00:00 2001 From: Povilas Vaitkus Date: Mon, 9 Dec 2024 15:48:21 +0200 Subject: [PATCH 1/2] [prometheus-stackdriver-exporter] bump to 0.17.0 Signed-off-by: Povilas Vaitkus --- charts/prometheus-stackdriver-exporter/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/prometheus-stackdriver-exporter/Chart.yaml b/charts/prometheus-stackdriver-exporter/Chart.yaml index c93f0748a97b..b585b66834e0 100644 --- a/charts/prometheus-stackdriver-exporter/Chart.yaml +++ b/charts/prometheus-stackdriver-exporter/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 description: Stackdriver exporter for Prometheus name: prometheus-stackdriver-exporter -version: 4.6.2 -appVersion: v0.16.0 +version: 4.7.0 +appVersion: v0.17.0 home: https://www.stackdriver.com/ sources: - https://github.com/prometheus-community/stackdriver_exporter From fb5b07d69874aac52bca52cf5f786ce6e6d26135 Mon Sep 17 00:00:00 2001 From: Povilas Vaitkus Date: Fri, 13 Dec 2024 09:56:39 +0200 Subject: [PATCH 2/2] [prometheus-stackdriver-exporter]: change liveness/readiness probe paths Signed-off-by: Povilas Vaitkus --- .../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