File tree Expand file tree Collapse file tree 4 files changed +18
-2
lines changed
charts/azure-metrics-exporter Expand file tree Collapse file tree 4 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: azure-metrics-exporter
33type : application
44description : A Helm chart for azure-metrics-exporter
55home : https://github.com/webdevops/azure-metrics-exporter
6- version : 1.0.9
6+ version : 1.0.10
77# renovate: image=webdevops/azure-metrics-exporter
88appVersion : 23.7.0
99keywords :
Original file line number Diff line number Diff line change 55apiVersion : monitoring.coreos.com/v1
66kind : ServiceMonitor
77metadata :
8+ {{- with .Values.prometheus.monitor.additionalAnnotations }}
9+ annotations : {{- toYaml . | nindent 4 }}
10+ {{- end }}
811 name : {{ template "azure-metrics-exporter.fullname" $root }}-{{ .name }}
912 namespace : {{ template "azure-metrics-exporter.namespace" $root }}
10- labels : {{ include "azure-metrics-exporter.labels" $root | indent 4 }}
13+ labels :
14+ {{ include "azure-metrics-exporter.labels" $root | indent 4 }}
15+ {{- with .Values.prometheus.monitor.additionalLabels }}
16+ {{- toYaml . | nindent 4 }}
17+ {{- end }}
1118spec :
1219 jobLabel : {{ default "app.kubernetes.io/name" $monitorDefaults.jobLabel }}
1320 {{ include "servicemonitor.scrapeLimits" $monitorDefaults | indent 2 }}
Original file line number Diff line number Diff line change 33apiVersion : monitoring.coreos.com/v1
44kind : ServiceMonitor
55metadata :
6+ {{- with .Values.prometheus.monitor.additionalAnnotations }}
7+ annotations : {{- toYaml . | nindent 4 }}
8+ {{- end }}
69 name : {{ template "azure-metrics-exporter.fullname" . }}
710 namespace : {{ template "azure-metrics-exporter.namespace" . }}
811 labels : {{ include "azure-metrics-exporter.labels" . | indent 4 }}
12+ {{- with .Values.prometheus.monitor.additionalLabels }}
13+ {{- toYaml . | nindent 4 }}
14+ {{- end }}
915spec :
1016 jobLabel : {{ default "app.kubernetes.io/name" .Values.prometheus.monitor.jobLabel }}
1117 {{ include "servicemonitor.scrapeLimits" .Values.prometheus.monitor | indent 2 }}
Original file line number Diff line number Diff line change @@ -136,6 +136,9 @@ prometheus:
136136
137137 jobLabel : " "
138138
139+ additionalAnnotations : {}
140+ additionalLabels : {}
141+
139142 scheme : http
140143 basicAuth : {}
141144 bearerTokenFile :
You can’t perform that action at this time.
0 commit comments