mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-17 05:04:21 +01:00
Update check config add-on (#2192)
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
# Changelog
|
||||
|
||||
## 3.9.0
|
||||
|
||||
- Update base image to 2021.09.0
|
||||
- Change default version from "latest" to "stable"
|
||||
- Remove write access to /media
|
||||
|
||||
## 3.8.0
|
||||
|
||||
- Update base image to 2021.07.0
|
||||
|
||||
@@ -27,14 +27,14 @@ Home Assistant version.
|
||||
Add-on configuration:
|
||||
|
||||
```yaml
|
||||
version: latest
|
||||
version: stable
|
||||
```
|
||||
|
||||
### Option: `version` (required)
|
||||
|
||||
The version of Home Assistant that want to check your configuration against.
|
||||
|
||||
- Setting this option to `latest` or `stable` will result in checking your configuration
|
||||
- Setting this option to `stable` will result in checking your configuration
|
||||
against the latest stable release of Home Assistant.
|
||||
- Setting this option to `beta` will result in checking your configuration
|
||||
against the latest beta release of Home Assistant.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# Home Assistant Add-on: Check Home Assistant configuration
|
||||
|
||||
Check your current configuration against any Home Assistant version.
|
||||
Check your Home Assistant configuration against other versions.
|
||||
|
||||
![Supports aarch64 Architecture][aarch64-shield] ![Supports amd64 Architecture][amd64-shield] ![Supports armhf Architecture][armhf-shield] ![Supports armv7 Architecture][armv7-shield] ![Supports i386 Architecture][i386-shield]
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"build_from": {
|
||||
"aarch64": "ghcr.io/home-assistant/aarch64-homeassistant-base:2021.07.0",
|
||||
"amd64": "ghcr.io/home-assistant/amd64-homeassistant-base:2021.07.0",
|
||||
"armhf": "ghcr.io/home-assistant/armhf-homeassistant-base:2021.07.0",
|
||||
"armv7": "ghcr.io/home-assistant/armv7-homeassistant-base:2021.07.0",
|
||||
"i386": "ghcr.io/home-assistant/i386-homeassistant-base:2021.07.0"
|
||||
"aarch64": "ghcr.io/home-assistant/aarch64-homeassistant-base:2021.09.0",
|
||||
"amd64": "ghcr.io/home-assistant/amd64-homeassistant-base:2021.09.0",
|
||||
"armhf": "ghcr.io/home-assistant/armhf-homeassistant-base:2021.09.0",
|
||||
"armv7": "ghcr.io/home-assistant/armv7-homeassistant-base:2021.09.0",
|
||||
"i386": "ghcr.io/home-assistant/i386-homeassistant-base:2021.09.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"name": "Check Home Assistant configuration",
|
||||
"version": "3.8.0",
|
||||
"version": "3.9.0",
|
||||
"slug": "check_config",
|
||||
"description": "Check current Home Assistant configuration against a new version",
|
||||
"description": "Check your Home Assistant configuration against other versions",
|
||||
"url": "https://github.com/home-assistant/hassio-addons/tree/master/check_config",
|
||||
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
|
||||
"uart": true,
|
||||
@@ -10,9 +10,9 @@
|
||||
"startup": "once",
|
||||
"boot": "manual",
|
||||
"init": false,
|
||||
"map": ["config", "ssl", "media:rw", "share:rw"],
|
||||
"map": ["config", "ssl", "media", "share:rw"],
|
||||
"options": {
|
||||
"version": "latest"
|
||||
"version": "stable"
|
||||
},
|
||||
"schema": {
|
||||
"version": "str"
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
configuration:
|
||||
version:
|
||||
name: Version
|
||||
description: The version of Home Assistant to check against, you can use `stable` , `latest`, `dev` and a version
|
||||
description: The version of Home Assistant to check against, you can use `stable` , `beta`, `dev` or a spesific version
|
||||
Reference in New Issue
Block a user