56 lines
2.2 KiB
Smarty
56 lines
2.2 KiB
Smarty
|
{{- define "tc.v1.common.class.prometheusrule" -}}
|
||
|
{{- $fullName := include "tc.v1.common.lib.chart.names.fullname" . -}}
|
||
|
{{- $prometheusruleName := $fullName -}}
|
||
|
{{- $values := .Values.prometheusrule -}}
|
||
|
|
||
|
{{- if hasKey . "ObjectValues" -}}
|
||
|
{{- with .ObjectValues.metrics -}}
|
||
|
{{- $values = . -}}
|
||
|
{{- end -}}
|
||
|
{{- end -}}
|
||
|
{{- $prometheusruleLabels := $values.labels -}}
|
||
|
{{- $prometheusruleAnnotations := $values.annotations -}}
|
||
|
|
||
|
{{- if and (hasKey $values "nameOverride") $values.nameOverride -}}
|
||
|
{{- $prometheusruleName = printf "%v-%v" $prometheusruleName $values.nameOverride -}}
|
||
|
{{- end }}
|
||
|
---
|
||
|
apiVersion: {{ include "tc.v1.common.capabilities.prometheusrule.apiVersion" $ }}
|
||
|
kind: PrometheusRule
|
||
|
metadata:
|
||
|
name: {{ $prometheusruleName }}
|
||
|
namespace: {{ $.Values.namespace | default $.Values.global.namespace | default $.Release.Namespace }}
|
||
|
{{- $labels := (mustMerge ($prometheusruleLabels | 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 ($prometheusruleAnnotations | 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:
|
||
|
groups:
|
||
|
{{- range $name, $groupValues := .groups }}
|
||
|
- name: {{ $prometheusruleName }}-{{ $name }}
|
||
|
rules:
|
||
|
{{- with $groupValues.rules }}
|
||
|
{{- toYaml . | nindent 8 }}
|
||
|
{{- end }}
|
||
|
{{- with $groupValues.additionalrules }}
|
||
|
{{- toYaml . | nindent 8 }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|
||
|
{{- range $id, $groupValues := .additionalgroups }}
|
||
|
- name: {{ $prometheusruleName }}-{{ if $groupValues.name }}{{ $groupValues.name }}{{ else }}{{ $id }}{{ end }}
|
||
|
rules:
|
||
|
{{- with $groupValues.rules }}
|
||
|
{{- toYaml . | nindent 8 }}
|
||
|
{{- end }}
|
||
|
{{- with $groupValues.additionalrules }}
|
||
|
{{- toYaml . | nindent 8 }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|
||
|
{{- end -}}
|