blob: 6c3b41f5a50fb971fbe2206382a9a98b7bd95148 [file] [log] [blame]
Sylvain Desbureaux93a5b492020-11-27 11:07:42 +01001{{/*
2# Copyright © 2020 Bitnami, Orange
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15*/}}
16
17{{- if default false (and .Values.global.metrics.enabled .Values.global.metrics.custom_resources) }}
18apiVersion: monitoring.coreos.com/v1
19kind: ServiceMonitor
20metadata:
21 name: {{ template "common.fullname" . }}
22 {{- if .Values.metrics.serviceMonitor.namespace }}
23 namespace: {{ .Values.metrics.serviceMonitor.namespace }}
24 {{- else }}
25 namespace: {{ include "common.namespace" . }}
26 {{- end }}
27 labels: {{- include "common.labels" . | nindent 4 }}
28 {{- range $key, $value := .Values.metrics.serviceMonitor.selector }}
29 {{ $key }}: {{ $value | quote }}
30 {{- end }}
31spec:
32 selector:
33 matchLabels: {{- include "common.matchLabels" . | nindent 6 }}
34 endpoints:
35 - port: metrics
36 {{- if .Values.metrics.serviceMonitor.interval }}
37 interval: {{ .Values.metrics.serviceMonitor.interval }}
38 {{- end }}
39 {{- if .Values.metrics.serviceMonitor.scrapeTimeout }}
40 scrapeTimeout: {{ .Values.metrics.serviceMonitor.scrapeTimeout }}
41 {{- end }}
42 {{- if .Values.metrics.serviceMonitor.relabelings }}
43 relabelings: {{- include "common.tplValue" ( dict "value" .Values.metrics.serviceMonitor.relabelings "context" $) | nindent 8 }}
44 {{- end }}
45 {{- if .Values.metrics.serviceMonitor.metricRelabelings }}
46 metricRelabelings: {{- include "common.tplValue" ( dict "value" .Values.metrics.serviceMonitor.metricRelabelings "context" $) | nindent 8 }}
47 {{- end }}
48 namespaceSelector:
49 matchNames:
50 - {{ .Release.Namespace }}
51{{- end }}