2023-01-27 05:42:08 +00:00
|
|
|
--- charts-original/templates/servicemonitor.yaml
|
|
|
|
+++ charts/templates/servicemonitor.yaml
|
2023-07-11 18:34:11 +00:00
|
|
|
@@ -9,13 +9,26 @@
|
|
|
|
{{- with .Values.prometheus.monitor.additionalLabels }}
|
|
|
|
{{- toYaml . | nindent 4 }}
|
|
|
|
{{- end }}
|
|
|
|
+ {{- with .Values.prometheus.monitor.annotations }}
|
|
|
|
+ annotations:
|
|
|
|
+ {{- toYaml . | nindent 4 }}
|
|
|
|
+ {{- end }}
|
|
|
|
spec:
|
|
|
|
jobLabel: {{ default "app.kubernetes.io/name" .Values.prometheus.monitor.jobLabel }}
|
|
|
|
+ {{- with .Values.prometheus.monitor.targetLabels }}
|
|
|
|
+ targetLabels:
|
|
|
|
+ {{- toYaml . | trim | nindent 4 }}
|
|
|
|
+ {{- end }}
|
|
|
|
+ {{- with .Values.prometheus.monitor.podTargetLabels }}
|
|
|
|
+ podTargetLabels:
|
|
|
|
+ {{- toYaml . | trim | nindent 4 }}
|
|
|
|
+ {{- end }}
|
|
|
|
+ {{- include "servicemonitor.scrapeLimits" .Values.prometheus.monitor | indent 2 }}
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
- {{- if .Values.prometheus.monitor.selectorOverride -}}
|
|
|
|
- {{ toYaml .Values.prometheus.monitor.selectorOverride | nindent 6 }}
|
|
|
|
- {{ else }}
|
|
|
|
+ {{- with .Values.prometheus.monitor.selectorOverride }}
|
|
|
|
+ {{- toYaml . | nindent 6 }}
|
|
|
|
+ {{- else }}
|
|
|
|
{{- include "kube-state-metrics.selectorLabels" . | indent 6 }}
|
|
|
|
{{- end }}
|
|
|
|
endpoints:
|
|
|
|
@@ -32,9 +45,19 @@
|
2023-05-12 22:18:04 +00:00
|
|
|
{{- if .Values.prometheus.monitor.honorLabels }}
|
|
|
|
honorLabels: true
|
|
|
|
{{- end }}
|
|
|
|
- {{- if .Values.prometheus.monitor.metricRelabelings }}
|
2023-01-27 05:42:08 +00:00
|
|
|
metricRelabelings:
|
2023-05-12 22:18:04 +00:00
|
|
|
+ {{- if .Values.prometheus.monitor.metricRelabelings }}
|
2023-01-27 05:42:08 +00:00
|
|
|
{{- toYaml .Values.prometheus.monitor.metricRelabelings | nindent 8 }}
|
2023-05-12 22:18:04 +00:00
|
|
|
+ {{- end }}
|
|
|
|
+ {{ if .Values.global.cattle.clusterId }}
|
|
|
|
+ - sourceLabels: [__address__]
|
|
|
|
+ targetLabel: cluster_id
|
|
|
|
+ replacement: {{ .Values.global.cattle.clusterId }}
|
|
|
|
+ {{- end }}
|
|
|
|
+ {{ if .Values.global.cattle.clusterName }}
|
|
|
|
+ - sourceLabels: [__address__]
|
|
|
|
+ targetLabel: cluster_name
|
|
|
|
+ replacement: {{ .Values.global.cattle.clusterName }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if .Values.prometheus.monitor.relabelings }}
|
|
|
|
relabelings:
|
2023-07-11 18:34:11 +00:00
|
|
|
@@ -47,6 +70,13 @@
|
|
|
|
tlsConfig:
|
|
|
|
{{- toYaml .Values.prometheus.monitor.tlsConfig | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
+ {{- if .Values.prometheus.monitor.bearerTokenFile }}
|
|
|
|
+ bearerTokenFile: {{ .Values.prometheus.monitor.bearerTokenFile }}
|
|
|
|
+ {{- end }}
|
|
|
|
+ {{- with .Values.prometheus.monitor.bearerTokenSecret }}
|
|
|
|
+ bearerTokenSecret:
|
|
|
|
+ {{- toYaml . | nindent 8 }}
|
|
|
|
+ {{- end }}
|
|
|
|
{{- if .Values.selfMonitor.enabled }}
|
|
|
|
- port: metrics
|
|
|
|
{{- if .Values.prometheus.monitor.interval }}
|
|
|
|
@@ -61,10 +91,6 @@
|
2023-05-12 22:18:04 +00:00
|
|
|
{{- if .Values.prometheus.monitor.honorLabels }}
|
|
|
|
honorLabels: true
|
2023-01-27 05:42:08 +00:00
|
|
|
{{- end }}
|
2023-05-12 22:18:04 +00:00
|
|
|
- {{- if .Values.prometheus.monitor.metricRelabelings }}
|
|
|
|
- metricRelabelings:
|
|
|
|
- {{- toYaml .Values.prometheus.monitor.metricRelabelings | nindent 8 }}
|
|
|
|
- {{- end }}
|
2023-01-27 05:42:08 +00:00
|
|
|
{{- if .Values.prometheus.monitor.relabelings }}
|
|
|
|
relabelings:
|
2023-05-12 22:18:04 +00:00
|
|
|
{{- toYaml .Values.prometheus.monitor.relabelings | nindent 8 }}
|
2023-07-11 18:34:11 +00:00
|
|
|
@@ -76,5 +102,12 @@
|
|
|
|
tlsConfig:
|
|
|
|
{{- toYaml .Values.prometheus.monitor.tlsConfig | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
+ {{- if .Values.prometheus.monitor.bearerTokenFile }}
|
|
|
|
+ bearerTokenFile: {{ .Values.prometheus.monitor.bearerTokenFile }}
|
|
|
|
+ {{- end }}
|
|
|
|
+ {{- with .Values.prometheus.monitor.bearerTokenSecret }}
|
|
|
|
+ bearerTokenSecret:
|
|
|
|
+ {{- toYaml . | nindent 8 }}
|
|
|
|
+ {{- end }}
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|