forked from carlosedp/cluster-monitoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars.jsonnet
49 lines (45 loc) · 954 Bytes
/
vars.jsonnet
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
// Enable or disable additional modules
modules: [
{
name: 'armExporter',
enabled: false,
file: import 'arm_exporter.jsonnet',
},
{
name: 'upsExporter',
enabled: false,
file: import 'ups_exporter.jsonnet',
},
{
name: 'metallbExporter',
enabled: false,
file: import 'metallb.jsonnet',
},
{
name: 'traefikExporter',
enabled: true,
file: import 'traefik.jsonnet',
},
{
name: 'elasticExporter',
enabled: false,
file: import 'elasticsearch_exporter.jsonnet',
},
],
k3s: {
enabled: true,
master_ip: '192.168.1.38'
},
// Domain suffix for the ingresses
suffixDomain: '192.168.1.38.nip.io',
// Setting these to false, defaults to emptyDirs
enablePersistence: {
prometheus: false,
grafana: true,
},
// Grafana "from" email
grafana: {
from_address: 'andy.gilbreath@gmail.com',
},
}