45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
|
{{- if .Values.serviceMonitor.enabled }}
|
||
|
---
|
||
|
apiVersion: monitoring.coreos.com/v1
|
||
|
kind: ServiceMonitor
|
||
|
metadata:
|
||
|
name: {{ template "grafana.fullname" . }}
|
||
|
{{- if .Values.serviceMonitor.namespace }}
|
||
|
namespace: {{ .Values.serviceMonitor.namespace }}
|
||
|
{{- else }}
|
||
|
namespace: {{ template "grafana.namespace" . }}
|
||
|
{{- end }}
|
||
|
labels:
|
||
|
{{- include "grafana.labels" . | nindent 4 }}
|
||
|
{{- if .Values.serviceMonitor.labels }}
|
||
|
{{- toYaml .Values.serviceMonitor.labels | nindent 4 }}
|
||
|
{{- end }}
|
||
|
spec:
|
||
|
endpoints:
|
||
|
- port: {{ .Values.service.portName }}
|
||
|
{{- with .Values.serviceMonitor.interval }}
|
||
|
interval: {{ . }}
|
||
|
{{- end }}
|
||
|
{{- with .Values.serviceMonitor.scrapeTimeout }}
|
||
|
scrapeTimeout: {{ . }}
|
||
|
{{- end }}
|
||
|
honorLabels: true
|
||
|
path: {{ .Values.serviceMonitor.path }}
|
||
|
scheme: {{ .Values.serviceMonitor.scheme }}
|
||
|
{{- if .Values.serviceMonitor.tlsConfig }}
|
||
|
tlsConfig:
|
||
|
{{- toYaml .Values.serviceMonitor.tlsConfig | nindent 6 }}
|
||
|
{{- end }}
|
||
|
{{- if .Values.serviceMonitor.relabelings }}
|
||
|
relabelings:
|
||
|
{{- toYaml .Values.serviceMonitor.relabelings | nindent 4 }}
|
||
|
{{- end }}
|
||
|
jobLabel: "{{ .Release.Name }}"
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
{{- include "grafana.selectorLabels" . | nindent 8 }}
|
||
|
namespaceSelector:
|
||
|
matchNames:
|
||
|
- {{ .Release.Namespace }}
|
||
|
{{- end }}
|