You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.5 KiB
44 lines
1.5 KiB
{{- if .Values.metrics.serviceMonitor.enabled }}
|
|
kind: ServiceMonitor
|
|
apiVersion: monitoring.coreos.com/v1
|
|
metadata:
|
|
labels:
|
|
{{- include "qdrant.labels" . | nindent 4 }}
|
|
{{- with .Values.metrics.serviceMonitor.additionalLabels }}
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
name: {{ include "qdrant.fullname" . }}
|
|
spec:
|
|
endpoints:
|
|
- honorLabels: true
|
|
interval: {{ .Values.metrics.serviceMonitor.scrapeInterval }}
|
|
path: {{ .Values.metrics.serviceMonitor.targetPath }}
|
|
port: {{ .Values.metrics.serviceMonitor.targetPort }}
|
|
scheme: http
|
|
scrapeTimeout: {{ .Values.metrics.serviceMonitor.scrapeTimeout }}
|
|
{{- if .Values.metrics.serviceMonitor.metricRelabelings }}
|
|
metricRelabelings:
|
|
{{ tpl (toYaml .Values.metrics.serviceMonitor.metricRelabelings | indent 8) . }}
|
|
{{- end }}
|
|
{{- if .Values.metrics.serviceMonitor.relabelings }}
|
|
relabelings:
|
|
{{ tpl (toYaml .Values.metrics.serviceMonitor.relabelings | indent 8) . }}
|
|
{{- end }}
|
|
{{- if .Values.readOnlyApiKey }}
|
|
authorization:
|
|
type: Bearer
|
|
credentials:
|
|
name: {{ include "qdrant.fullname" . }}-apikey
|
|
key: read-only-api-key
|
|
{{- else if .Values.apiKey }}
|
|
authorization:
|
|
type: Bearer
|
|
credentials:
|
|
name: {{ include "qdrant.fullname" . }}-apikey
|
|
key: api-key
|
|
{{- end }}
|
|
selector:
|
|
matchLabels:
|
|
{{- include "qdrant.labels" . | nindent 6 }}
|
|
app.kubernetes.io/component: cluster-discovery
|
|
{{- end }}
|
|
|