forked from hassio-addons/repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
53 lines (53 loc) · 1.11 KB
/
config.json
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
50
51
52
53
{
"name": "Grafana",
"version": "7.2.0",
"slug": "grafana",
"description": "The open platform for beautiful analytics and monitoring",
"url": "https://github.com/hassio-addons/addon-grafana",
"startup": "services",
"ingress": true,
"ingress_port": 1337,
"ingress_stream": true,
"panel_icon": "mdi:chart-timeline",
"panel_title": "Grafana",
"arch": [
"aarch64",
"amd64",
"armv7"
],
"map": [
"config",
"ssl"
],
"watchdog": "http://[HOST]:1337/api/health",
"options": {
"plugins": [],
"env_vars": [],
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"ports": {
"80/tcp": null
},
"ports_description": {
"80/tcp": "Not required for Ingress"
},
"schema": {
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
"plugins": [
"str"
],
"certfile": "str",
"keyfile": "str",
"ssl": "bool",
"grafana_ingress_user": "str?",
"env_vars": [
{
"name": "match(^GF_([A-Z0-9_])+$)",
"value": "str"
}
]
},
"image": "ghcr.io/hassio-addons/grafana/{arch}"
}