andrussal f451fd504d refactor(testing-framework): rename runners to deployers
- Update paths and orchestration for deployers (compose/k8s/local/docker)

- Consolidate scripts helpers and refresh book/README docs
2025-12-16 21:20:27 +01:00

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 }}