⬆️ Updating add-on Tautulli to 789888e

This commit is contained in:
Community Hass.io Add-ons Bot 2021-11-09 19:13:11 +00:00
parent 9b4c3b0f2c
commit 1a459fd1da
5 changed files with 41 additions and 48 deletions

View file

@ -962,10 +962,10 @@ SOFTWARE.
[tasmoadmin-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg
[tasmoadmin-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
[tasmoadmin-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg
[addon-tautulli]: https://github.com/hassio-addons/addon-tautulli/tree/2bdac10
[addon-doc-tautulli]: https://github.com/hassio-addons/addon-tautulli/blob/2bdac10/README.md
[addon-tautulli]: https://github.com/hassio-addons/addon-tautulli/tree/789888e
[addon-doc-tautulli]: https://github.com/hassio-addons/addon-tautulli/blob/789888e/README.md
[tautulli-issue]: https://github.com/hassio-addons/addon-tautulli/issues
[tautulli-version-shield]: https://img.shields.io/badge/version-2bdac10-blue.svg
[tautulli-version-shield]: https://img.shields.io/badge/version-789888e-blue.svg
[tautulli-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
[tautulli-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
[tautulli-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg

View file

@ -1,4 +1,5 @@
# Changelog since v2.3.0
- Migrate JSON config to YAML (#186)
- Switch to centralized GitHub Action Workflows (#185)
- ⬆️ Upgrades add-on base image to 10.1.0 (#184)
- ⬆️ Bump actions/checkout from 2.3.4 to 2.3.5 (#180)

View file

@ -48,6 +48,6 @@ If you are more interested in stable releases of our add-ons:
[forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-tautulli/68745?u=ludeeus
[maintenance-shield]: https://img.shields.io/maintenance/yes/2021.svg
[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg
[release-shield]: https://img.shields.io/badge/version-2bdac10-blue.svg
[release]: https://github.com/hassio-addons/addon-tautulli/tree/2bdac10
[release-shield]: https://img.shields.io/badge/version-789888e-blue.svg
[release]: https://github.com/hassio-addons/addon-tautulli/tree/789888e
[screenshot]: https://github.com/hassio-addons/addon-tautulli/raw/main/images/screenshot.png

View file

@ -1,43 +0,0 @@
{
"name": "Tautulli",
"version": "2bdac10",
"slug": "tautulli",
"description": "Monitoring and tracking tool for Plex Media Server",
"url": "https://github.com/hassio-addons/addon-tautulli/tree/main/README.md",
"webui": "[PROTO:ssl]://[HOST]:[PORT:8181]",
"arch": [
"aarch64",
"amd64",
"armhf",
"armv7",
"i386"
],
"hassio_api": true,
"ports": {
"8181/tcp": 8181
},
"ports_description": {
"8181/tcp": "Tautulli web interface"
},
"map": [
"ssl",
"share:rw"
],
"options": {
"username": "",
"password": "",
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
"username": "str",
"password": "password",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"leave_front_door_open": "bool?"
},
"image": "ghcr.io/hassio-addons/tautulli/{arch}"
}

35
tautulli/config.yaml Normal file
View file

@ -0,0 +1,35 @@
arch:
- aarch64
- amd64
- armhf
- armv7
- i386
description: Monitoring and tracking tool for Plex Media Server
hassio_api: true
image: ghcr.io/hassio-addons/tautulli/{arch}
map:
- ssl
- share:rw
name: Tautulli
options:
certfile: fullchain.pem
keyfile: privkey.pem
password: ''
ssl: true
username: ''
ports:
8181/tcp: 8181
ports_description:
8181/tcp: Tautulli web interface
schema:
certfile: str
keyfile: str
leave_front_door_open: bool?
log_level: list(trace|debug|info|notice|warning|error|fatal)?
password: password
ssl: bool
username: str
slug: tautulli
url: https://github.com/hassio-addons/addon-tautulli/tree/main/README.md
version: 789888e
webui: '[PROTO:ssl]://[HOST]:[PORT:8181]'