Files
hassio-addons-avm/influxdb/config.json
2021-06-29 12:37:08 +03:00

57 lines
1.2 KiB
JSON

{
"name": "InfluxDB",
"version": "4.1.1",
"slug": "influxdb",
"description": "Scalable datastore for metrics, events, and real-time analytics",
"url": "https://github.com/hassio-addons/addon-influxdb",
"ingress": true,
"ingress_port": 1337,
"panel_icon": "mdi:chart-areaspline",
"startup": "services",
"homeassistant": "0.92.0b2",
"hassio_api": true,
"arch": [
"aarch64",
"amd64",
"armv7",
"i386"
],
"init": false,
"map": [
"share:rw",
"ssl"
],
"ports": {
"80/tcp": null,
"8086/tcp": 8086
},
"ports_description": {
"80/tcp": "Web interface (Not required for Ingress)",
"8086/tcp": "InfluxDB server"
},
"auth_api": true,
"options": {
"auth": true,
"reporting": true,
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"envvars": []
},
"schema": {
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
"auth": "bool",
"reporting": "bool",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"envvars": [
{
"name": "match(^INFLUXDB_([A-Z0-9_])+$)",
"value": "str"
}
],
"leave_front_door_open": "bool?"
},
"image": "ghcr.io/hassio-addons/influxdb/{arch}"
}