18 lines
304 B
YAML
18 lines
304 B
YAML
|
|
apiVersion: v1
|
||
|
|
kind: ConfigMap
|
||
|
|
metadata:
|
||
|
|
name: grafana-datasource
|
||
|
|
namespace: default
|
||
|
|
data:
|
||
|
|
datasource.yml: |
|
||
|
|
apiVersion: 1
|
||
|
|
datasources:
|
||
|
|
- name: Prometheus
|
||
|
|
type: prometheus
|
||
|
|
access: proxy
|
||
|
|
url: http://prometheus-service:9090
|
||
|
|
isDefault: true
|
||
|
|
editable: false
|
||
|
|
|
||
|
|
|