From dd5f167c7df8b3588fe59cb6305a59d3164ae89d Mon Sep 17 00:00:00 2001 From: drfaust92 Date: Sat, 9 Nov 2024 10:11:07 -0500 Subject: [PATCH 1/2] bump to 0.17.0 Signed-off-by: drfaust92 --- 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 bd52e3bd8f68b4226b7f5bbabf966d81ebf1b727 Mon Sep 17 00:00:00 2001 From: drfaust92 Date: Sat, 9 Nov 2024 15:03:07 -0500 Subject: [PATCH 2/2] fix args Signed-off-by: drfaust92 --- .../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..e8f61313693d 100644 --- a/charts/prometheus-stackdriver-exporter/templates/deployment.yaml +++ b/charts/prometheus-stackdriver-exporter/templates/deployment.yaml @@ -73,10 +73,10 @@ spec: mountPath: /etc/secrets/service-account/ {{- end}} args: - - --google.project-id={{ .Values.stackdriver.projectId }} + - --google.project-ids={{ .Values.stackdriver.projectId }} - --monitoring.metrics-interval={{ .Values.stackdriver.metrics.interval }} - --monitoring.metrics-offset={{ .Values.stackdriver.metrics.offset }} - - --monitoring.metrics-type-prefixes={{ .Values.stackdriver.metrics.typePrefixes | replace " " "" }} + - --monitoring.metrics-prefixes={{ .Values.stackdriver.metrics.typePrefixes | replace " " "" }} {{- range .Values.stackdriver.metrics.filters }} - --monitoring.filters={{ . }} {{- end }}