⬆️ Updating add-on Log Viewer to 4954ca8

This commit is contained in:
Community Hass.io Add-ons Bot 2021-11-07 10:10:24 +00:00
parent c600476711
commit 6a02a36b9b
5 changed files with 44 additions and 50 deletions

View file

@ -1,4 +1,6 @@
# Changelog since v0.12.0
- ⬆️ Upgrades add-on base image to 10.2.0 (#130)
- Migrate JSON config to YAML (#129)
- Switch to centralized GitHub Action Workflows (#128)
- ⬆️ Upgrades nodejs to 14.18.1-r0 (#127)
- ⬆️ Bump actions/checkout from 2.3.4 to 2.3.5 (#123)

View file

@ -40,5 +40,5 @@ If you are more interested in stable releases of our add-ons:
[forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-log-viewer/64377?u=dale3h
[maintenance-shield]: https://img.shields.io/maintenance/yes/2021.svg
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
[release-shield]: https://img.shields.io/badge/version-5cae0c1-blue.svg
[release]: https://github.com/hassio-addons/addon-log-viewer/tree/5cae0c1
[release-shield]: https://img.shields.io/badge/version-4954ca8-blue.svg
[release]: https://github.com/hassio-addons/addon-log-viewer/tree/4954ca8

View file

@ -1,45 +0,0 @@
{
"name": "Log Viewer",
"version": "5cae0c1",
"slug": "logviewer",
"description": "Browser-based log utility for Home Assistant",
"url": "https://github.com/hassio-addons/addon-log-viewer",
"init": false,
"ingress": true,
"ingress_stream": true,
"panel_icon": "mdi:text-box-outline",
"homeassistant": "0.92.0b2",
"arch": [
"aarch64",
"amd64",
"armhf",
"armv7",
"i386"
],
"homeassistant_api": true,
"auth_api": true,
"ports": {
"80/tcp": null
},
"ports_description": {
"80/tcp": "Web interface (Not required for Ingress)"
},
"map": [
"config",
"share",
"ssl"
],
"options": {
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"leave_front_door_open": "bool?"
},
"image": "ghcr.io/hassio-addons/log-viewer/{arch}"
}

37
log-viewer/config.yaml Normal file
View file

@ -0,0 +1,37 @@
arch:
- aarch64
- amd64
- armhf
- armv7
- i386
auth_api: true
description: Browser-based log utility for Home Assistant
homeassistant: 0.92.0b2
homeassistant_api: true
image: ghcr.io/hassio-addons/log-viewer/{arch}
ingress: true
ingress_stream: true
init: false
map:
- config
- share
- ssl
name: Log Viewer
options:
certfile: fullchain.pem
keyfile: privkey.pem
ssl: true
panel_icon: mdi:text-box-outline
ports:
80/tcp: null
ports_description:
80/tcp: Web interface (Not required for Ingress)
schema:
certfile: str
keyfile: str
leave_front_door_open: bool?
log_level: list(trace|debug|info|notice|warning|error|fatal)?
ssl: bool
slug: logviewer
url: https://github.com/hassio-addons/addon-log-viewer
version: 4954ca8