48 lines
2.1 KiB
Smarty
48 lines
2.1 KiB
Smarty
|
{{- define "tc.v1.common.class.servicemonitor" -}}
|
||
|
{{- $fullName := include "tc.v1.common.lib.chart.names.fullname" . -}}
|
||
|
{{- $servicemonitorName := $fullName -}}
|
||
|
{{- $values := .Values.servicemonitor -}}
|
||
|
|
||
|
{{- if hasKey . "ObjectValues" -}}
|
||
|
{{- with .ObjectValues.metrics -}}
|
||
|
{{- $values = . -}}
|
||
|
{{- end -}}
|
||
|
{{- end -}}
|
||
|
{{- $servicemonitorLabels := $values.labels -}}
|
||
|
{{- $servicemonitorAnnotations := $values.annotations -}}
|
||
|
|
||
|
{{- if and (hasKey $values "nameOverride") $values.nameOverride -}}
|
||
|
{{- $servicemonitorName = printf "%v-%v" $servicemonitorName $values.nameOverride -}}
|
||
|
{{- end }}
|
||
|
---
|
||
|
apiVersion: {{ include "tc.v1.common.capabilities.servicemonitor.apiVersion" $ }}
|
||
|
kind: ServiceMonitor
|
||
|
metadata:
|
||
|
name: {{ $servicemonitorName }}
|
||
|
namespace: {{ $.Values.namespace | default $.Values.global.namespace | default $.Release.Namespace }}
|
||
|
{{- $labels := (mustMerge ($servicemonitorLabels | default dict) (include "tc.v1.common.lib.metadata.allLabels" $ | fromYaml)) -}}
|
||
|
{{- with (include "tc.v1.common.lib.metadata.render" (dict "rootCtx" $ "labels" $labels) | trim) }}
|
||
|
labels:
|
||
|
{{- . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
{{- $annotations := (mustMerge ($servicemonitorAnnotations | default dict) (include "tc.v1.common.lib.metadata.allAnnotations" $ | fromYaml)) -}}
|
||
|
{{- with (include "tc.v1.common.lib.metadata.render" (dict "rootCtx" $ "annotations" $annotations) | trim) }}
|
||
|
annotations:
|
||
|
{{- . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
spec:
|
||
|
jobLabel: app.kubernetes.io/name
|
||
|
selector:
|
||
|
{{- if $values.selector }}
|
||
|
{{- tpl (toYaml $values.selector) $ | nindent 4 }}
|
||
|
{{- else }}
|
||
|
{{- $objectData := dict "targetSelector" $values.targetSelector }}
|
||
|
{{- $selectedService := fromYaml ( include "tc.v1.common.lib.helpers.getSelectedServiceValues" (dict "rootCtx" $ "objectData" $objectData)) }}
|
||
|
{{- $selectedServiceName := $selectedService.shortName }}
|
||
|
matchLabels:
|
||
|
{{- include "tc.v1.common.lib.metadata.selectorLabels" (dict "rootCtx" $ "objectType" "service" "objectName" $selectedServiceName) | indent 6 }}
|
||
|
{{- end }}
|
||
|
endpoints:
|
||
|
{{- tpl (toYaml $values.endpoints) $ | nindent 4 }}
|
||
|
{{- end -}}
|