48 lines
1.4 KiB
YAML
48 lines
1.4 KiB
YAML
{{- if and .Values.prometheus.enabled .Values.prometheus.additionalServiceMonitors }}
|
|
apiVersion: v1
|
|
kind: List
|
|
items:
|
|
{{- range .Values.prometheus.additionalServiceMonitors }}
|
|
- apiVersion: monitoring.coreos.com/v1
|
|
kind: ServiceMonitor
|
|
metadata:
|
|
name: {{ .name }}
|
|
namespace: {{ template "kube-prometheus-stack.namespace" $ }}
|
|
labels:
|
|
app: {{ template "kube-prometheus-stack.name" $ }}-prometheus
|
|
{{ include "kube-prometheus-stack.labels" $ | indent 8 }}
|
|
{{- if .additionalLabels }}
|
|
{{ toYaml .additionalLabels | indent 8 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- include "servicemonitor.scrapeLimits" . | nindent 6 }}
|
|
endpoints:
|
|
{{ toYaml .endpoints | indent 8 }}
|
|
{{- if .jobLabel }}
|
|
jobLabel: {{ .jobLabel }}
|
|
{{- end }}
|
|
{{- if .namespaceSelector }}
|
|
namespaceSelector:
|
|
{{ toYaml .namespaceSelector | indent 8 }}
|
|
{{- end }}
|
|
selector:
|
|
{{ toYaml .selector | indent 8 }}
|
|
{{- if .targetLabels }}
|
|
targetLabels:
|
|
{{ toYaml .targetLabels | indent 8 }}
|
|
{{- end }}
|
|
{{- if .podTargetLabels }}
|
|
podTargetLabels:
|
|
{{ toYaml .podTargetLabels | indent 8 }}
|
|
{{- end }}
|
|
{{- if .metricRelabelings }}
|
|
metricRelabelings:
|
|
{{ toYaml .metricRelabelings | indent 8 }}
|
|
{{- end }}
|
|
{{- if .relabelings }}
|
|
relabelings:
|
|
{{ toYaml .relabelings | indent 8 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|