Update check config add-on (#2192)

This commit is contained in:
Joakim Sørensen
2021-09-27 11:45:38 +02:00
committed by GitHub
parent a6b933bfe6
commit 1adc125ed5
6 changed files with 19 additions and 13 deletions

View File

@@ -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

View File

@@ -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.

View File

@@ -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]

View File

@@ -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"
}
}

View File

@@ -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"

View File

@@ -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