18 lines
440 B
YAML
18 lines
440 B
YAML
|
{{- if gt (len .Values.alerting_groups) 0 }}
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: {{ include "common.names.fullname" . }}
|
||
|
labels:
|
||
|
{{- include "common.labels" . | nindent 4 }}
|
||
|
annotations:
|
||
|
{{- with .Values.annotations }}
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
data:
|
||
|
{{ include "common.names.fullname" . }}-alerting-rules.yaml: |-
|
||
|
groups:
|
||
|
{{- toYaml .Values.alerting_groups | nindent 6 }}
|
||
|
{{- end }}
|