blob: 13a92f3e05d3270d3acc919a7ab67169d222ae30 [file] [log] [blame]
PUSHP RAJf862d5b2021-12-14 07:07:00 +00001# SPDX-FileCopyrightText: 2021-present Open Networking Foundation <info@opennetworking.org>
2#
Sean Condon160ec1d2022-02-08 12:58:25 +00003# SPDX-License-Identifier: Apache-2.0
PUSHP RAJf862d5b2021-12-14 07:07:00 +00004
5apiVersion: v1
6kind: ConfigMap
7metadata:
8 name: {{ .Release.Name }}-datasources-templated
9 namespace: {{ .Release.Namespace }}
10 labels:
11 chronos_datasource: "chronos-datasource"
12data:
13 prom-datasources.yaml: |
14 apiVersion: 1
15 datasources:
16 {{- range .Values.grafana.source }}
17 - name: datasource-{{ .name }}
18 url: {{ .protocol }}://{{ .service }}:{{ .port }}
19 type: prometheus
20 access: proxy
21 jsonData:
22 oauthPassThru: true
23 {{- end }}
24