mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-01-02 13:23:13 +00:00
- Update paths and orchestration for deployers (compose/k8s/local/docker) - Consolidate scripts helpers and refresh book/README docs
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 }}
|