Skip to content

Commit

Permalink
[prometheus-blackbox-exporter] add action=replace to metricsRelabelings
Browse files Browse the repository at this point in the history
This (default) parameter is automatically added by k8s, causing the in-cluster
object to differ from the manifest created by this chart. This discrepancy
causes GitOps tooling to consider the resource out of date, as described in
prometheus-community#3626

Signed-off-by: Alex Miller <alex@thinkmassive.org>
  • Loading branch information
thinkmassive committed Oct 3, 2023
1 parent 272301a commit 2026927
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/prometheus-blackbox-exporter/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
description: Prometheus Blackbox Exporter
name: prometheus-blackbox-exporter
version: 8.4.0
version: 8.4.1
appVersion: v0.24.0
home: https://github.com/prometheus/blackbox_exporter
sources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,15 @@ spec:
- sourceLabels: [instance]
targetLabel: instance
replacement: {{ .url }}
action: replace
- sourceLabels: [target]
targetLabel: target
replacement: {{ .name }}
action: replace
{{- range $targetLabel, $replacement := .additionalMetricsRelabels | default $.Values.serviceMonitor.defaults.additionalMetricsRelabels }}
- targetLabel: {{ $targetLabel | quote }}
replacement: {{ $replacement | quote }}
action: replace
{{- end }}
{{- if concat (.additionalRelabeling | default list) $.Values.serviceMonitor.defaults.additionalRelabeling }}
relabelings:
Expand Down

0 comments on commit 2026927

Please sign in to comment.