|
@@ -0,0 +1,34 @@
|
|
1
|
+# Settings to connect to the Grafana instance.
|
|
2
|
+grafana:
|
|
3
|
+
|
|
4
|
+ base_url: https://grafana.company.tld
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+ api_key: apiauthkey
|
|
8
|
+
|
|
9
|
+# Settings to interact with the Git repository. Currently only SSH repos are
|
|
10
|
+# supported.
|
|
11
|
+git:
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+ url: "git.company.tld:it/grafana-dashboards.git"
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+ private_key: /etc/grafana-dashboard-manager/id_rsa_nopasswd
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+ clone_path: /tmp/grafana-dashboards
|
|
22
|
+
|
|
23
|
+# Settings to configure the Git webhook. Currently only GitLab webhooks are
|
|
24
|
+# supported.
|
|
25
|
+webhook:
|
|
26
|
+
|
|
27
|
+ interface: 127.0.0.1
|
|
28
|
+
|
|
29
|
+ port: 8080
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+ path: /gitlab-webhook
|
|
33
|
+
|
|
34
|
+ secret: mysecret
|