Migrate JSON config to YAML (#186)

This commit is contained in:
Franck Nijhof 2021-11-09 20:03:07 +01:00 committed by GitHub
parent 2bdac10100
commit 789888eb85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 42 additions and 42 deletions

View file

@ -1,9 +0,0 @@
{
"build_from": {
"aarch64": "ghcr.io/hassio-addons/base/aarch64:10.1.0",
"amd64": "ghcr.io/hassio-addons/base/amd64:10.1.0",
"armhf": "ghcr.io/hassio-addons/base/armhf:10.1.0",
"armv7": "ghcr.io/hassio-addons/base/armv7:10.1.0",
"i386": "ghcr.io/hassio-addons/base/i386:10.1.0"
}
}

7
tautulli/build.yaml Normal file
View file

@ -0,0 +1,7 @@
---
build_from:
aarch64: ghcr.io/hassio-addons/base/aarch64:10.1.0
amd64: ghcr.io/hassio-addons/base/amd64:10.1.0
armhf: ghcr.io/hassio-addons/base/armhf:10.1.0
armv7: ghcr.io/hassio-addons/base/armv7:10.1.0
i386: ghcr.io/hassio-addons/base/i386:10.1.0

View file

@ -1,33 +0,0 @@
{
"name": "Tautulli",
"version": "dev",
"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?"
}
}

35
tautulli/config.yaml Normal file
View file

@ -0,0 +1,35 @@
---
name: Tautulli
version: dev
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?