22 lines
431 B
YAML
22 lines
431 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: grafana-datasources
|
|
namespace: monitoring
|
|
data:
|
|
default.yaml: |-
|
|
apiVersion: 1
|
|
datasources:
|
|
- name: Loki
|
|
type: loki
|
|
access: proxy
|
|
url: "http://loki-svc:3100"
|
|
version: 1
|
|
isDefault: true
|
|
- name: Prometheus
|
|
type: prometheus
|
|
access: proxy
|
|
url: "http://prometheus-operator:9090"
|
|
version: 1
|
|
isDefault: false
|