123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- {{- /*
- Copyright VMware, Inc.
- SPDX-License-Identifier: APACHE-2.0
- */}}
- {{- if .Values.metrics.serviceMonitor.enabled }}
- {{- $releaseNamespace := default (include "common.names.namespace" .) .Values.metrics.serviceMonitor.namespace }}
- apiVersion: {{ default "monitoring.coreos.com/v1" .Values.metrics.serviceMonitor.apiVersion }}
- kind: ServiceMonitor
- metadata:
- name: {{ include "common.names.fullname" . }}
- namespace: {{ $releaseNamespace | quote }}
- {{- $labels := include "common.tplvalues.merge" ( dict "values" ( list .Values.metrics.serviceMonitor.labels .Values.commonLabels ) "context" . ) }}
- labels: {{- include "common.labels.standard" ( dict "customLabels" $labels "context" $ ) | nindent 4 }}
- {{- if .Values.commonAnnotations }}
- annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
- {{- end }}
- spec:
- endpoints:
- {{- /* Backward Compatibility for .Values.metrics.serviceMonitor.path */}}
- {{- $paths := list }}
- {{- if (.Values.metrics.serviceMonitor.paths | empty | not) }}
- {{- $paths = .Values.metrics.serviceMonitor.paths }}
- {{- end }}
- {{- if (.Values.metrics.serviceMonitor.path | empty | not) }}
- {{- $paths = prepend $paths .Values.metrics.serviceMonitor.path }}
- {{- end }}
- {{- range $idx, $path := ($paths | uniq) }}
- {{- with $ }}
- - port: minio-api
- path: {{ $path }}
- {{- if .Values.metrics.serviceMonitor.interval }}
- interval: {{ .Values.metrics.serviceMonitor.interval }}
- {{- end }}
- {{- if .Values.metrics.serviceMonitor.scrapeTimeout }}
- scrapeTimeout: {{ .Values.metrics.serviceMonitor.scrapeTimeout }}
- {{- end }}
- {{- if .Values.metrics.serviceMonitor.honorLabels }}
- honorLabels: {{ .Values.metrics.serviceMonitor.honorLabels }}
- {{- end }}
- {{- if .Values.metrics.serviceMonitor.metricRelabelings }}
- metricRelabelings: {{- toYaml .Values.metrics.serviceMonitor.metricRelabelings | nindent 8 }}
- {{- end }}
- {{- if .Values.metrics.serviceMonitor.relabelings }}
- relabelings: {{- toYaml .Values.metrics.serviceMonitor.relabelings | nindent 8 }}
- {{- end }}
- {{- if .Values.tls.enabled }}
- scheme: https
- {{- end }}
- {{- if .Values.metrics.serviceMonitor.tlsConfig }}
- tlsConfig: {{- toYaml .Values.metrics.serviceMonitor.tlsConfig | nindent 8 }}
- {{- end }}
- {{- end }}
- {{- end }}
- {{- if .Values.metrics.serviceMonitor.jobLabel }}
- jobLabel: {{ .Values.metrics.serviceMonitor.jobLabel }}
- {{- end }}
- namespaceSelector:
- matchNames:
- - {{ include "common.names.namespace" . | quote }}
- selector:
- matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 6 }}
- {{- if .Values.metrics.serviceMonitor.selector }}
- {{- include "common.tplvalues.render" (dict "value" .Values.metrics.serviceMonitor.selector "context" $) | nindent 6 }}
- {{- end }}
- {{- end }}
|