mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-01-07 15:53:10 +00:00
17 lines
335 B
YAML
17 lines
335 B
YAML
|
|
{{- if .Values.prometheus.enabled }}
|
||
|
|
---
|
||
|
|
apiVersion: v1
|
||
|
|
kind: ConfigMap
|
||
|
|
metadata:
|
||
|
|
name: prometheus
|
||
|
|
labels:
|
||
|
|
{{- include "nomos-runner.prometheusLabels" . | nindent 4 }}
|
||
|
|
data:
|
||
|
|
prometheus.yml: |
|
||
|
|
{{- if .Values.prometheus.config }}
|
||
|
|
{{ .Values.prometheus.config | indent 4 }}
|
||
|
|
{{- else }}
|
||
|
|
{{ "" | indent 4 }}
|
||
|
|
{{- end }}
|
||
|
|
{{- end }}
|