You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
{{- if .Values.metrics.enabled }}
|
|
{{- include "common.values.setup" . -}}
|
|
---
|
|
apiVersion: monitoring.coreos.com/v1
|
|
kind: ServiceMonitor
|
|
metadata:
|
|
name: {{ include "common.names.fullname" . }}
|
|
labels:
|
|
{{- include "common.labels" . | nindent 4 }}
|
|
{{- with .Values.metrics.serviceMonitor.labels }}
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
{{- include "common.labels.selectorLabels" . | nindent 6 }}
|
|
endpoints:
|
|
- port: http
|
|
{{- with .Values.metrics.serviceMonitor.interval }}
|
|
interval: {{ . }}
|
|
{{- end }}
|
|
{{- with .Values.metrics.serviceMonitor.scrapeTimeout }}
|
|
scrapeTimeout: {{ . }}
|
|
{{- end }}
|
|
path: /api/prometheus
|
|
{{- with .Values.metrics.serviceMonitor.bearerTokenFile }}
|
|
bearerTokenFile: {{ . }}
|
|
{{- end }}
|
|
{{- with .Values.metrics.serviceMonitor.bearerTokenSecret }}
|
|
bearerTokenSecret:
|
|
name: {{ .name }}
|
|
key: {{ .key }}
|
|
{{- with .optional }}
|
|
optional: {{ . }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|