From b775b07cee50947c20524f55ca5a39ac7bbafc6f Mon Sep 17 00:00:00 2001 From: "Community Hass.io Add-ons Bot" Date: Thu, 17 Mar 2022 17:51:10 +0000 Subject: [PATCH] :arrow_up: Updating add-on chrony to 48dbe81 --- README.md | 6 +++--- chrony/CHANGELOG.md | 2 ++ chrony/README.md | 4 ++-- chrony/config.json | 45 --------------------------------------------- chrony/config.yaml | 36 ++++++++++++++++++++++++++++++++++++ 5 files changed, 43 insertions(+), 50 deletions(-) delete mode 100644 chrony/config.json create mode 100644 chrony/config.yaml diff --git a/README.md b/README.md index 86502c50b..f6ec21174 100644 --- a/README.md +++ b/README.md @@ -1061,10 +1061,10 @@ SOFTWARE. [zerotier-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg [zerotier-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg [zerotier-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg -[addon-chrony]: https://github.com/hassio-addons/addon-chrony/tree/2e9756b -[addon-doc-chrony]: https://github.com/hassio-addons/addon-chrony/blob/2e9756b/README.md +[addon-chrony]: https://github.com/hassio-addons/addon-chrony/tree/48dbe81 +[addon-doc-chrony]: https://github.com/hassio-addons/addon-chrony/blob/48dbe81/README.md [chrony-issue]: https://github.com/hassio-addons/addon-chrony/issues -[chrony-version-shield]: https://img.shields.io/badge/version-2e9756b-blue.svg +[chrony-version-shield]: https://img.shields.io/badge/version-48dbe81-blue.svg [chrony-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg [chrony-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [chrony-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg diff --git a/chrony/CHANGELOG.md b/chrony/CHANGELOG.md index 81f094372..0d251466b 100644 --- a/chrony/CHANGELOG.md +++ b/chrony/CHANGELOG.md @@ -1,2 +1,4 @@ # Changelog since v2.2.2 +- 🔒 Pass sign token to main workflow (#112) +- 🔒 Sign add-on with Codenotary Community Attestation Service (CAS) (#111) - ⬆️ Upgrades add-on base image to 11.1.0 (#110) diff --git a/chrony/README.md b/chrony/README.md index c223fa41f..9620a23fb 100644 --- a/chrony/README.md +++ b/chrony/README.md @@ -40,5 +40,5 @@ If you are more interested in stable releases of our add-ons: [forum]: https://community.home-assistant.io/?u=frenck [maintenance-shield]: https://img.shields.io/maintenance/yes/2022.svg [project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg -[release-shield]: https://img.shields.io/badge/version-2e9756b-blue.svg -[release]: https://github.com/hassio-addons/addon-chrony/tree/2e9756b \ No newline at end of file +[release-shield]: https://img.shields.io/badge/version-48dbe81-blue.svg +[release]: https://github.com/hassio-addons/addon-chrony/tree/48dbe81 \ No newline at end of file diff --git a/chrony/config.json b/chrony/config.json deleted file mode 100644 index 87ed83138..000000000 --- a/chrony/config.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "chrony", - "version": "2e9756b", - "slug": "chrony", - "description": "A local NTP (Network Time Protocol) server for cameras etc.", - "url": "https://github.com/hassio-addons/addon-chrony", - "startup": "system", - "arch": [ - "aarch64", - "amd64", - "armhf", - "armv7", - "i386" - ], - "hassio_api": true, - "init": false, - "privileged": [ - "SYS_TIME" - ], - "ports": { - "123/udp": 123 - }, - "ports_description": { - "123/udp": "NTP; Network Time Protocol" - }, - "options": { - "set_system_clock": true, - "mode": "pool", - "ntp_pool": "pool.ntp.org", - "ntp_server": [ - "54.39.13.155", - "briareus.schulte.org" - ] - }, - "schema": { - "log_level": "list(trace|debug|info|notice|warning|error|fatal)?", - "set_system_clock": "bool", - "ntp_pool": "str?", - "ntp_server": [ - "str?" - ], - "mode": "list(pool|server)" - }, - "image": "ghcr.io/hassio-addons/chrony/{arch}" -} \ No newline at end of file diff --git a/chrony/config.yaml b/chrony/config.yaml new file mode 100644 index 000000000..e9cf44057 --- /dev/null +++ b/chrony/config.yaml @@ -0,0 +1,36 @@ +arch: +- aarch64 +- amd64 +- armhf +- armv7 +- i386 +codenotary: codenotary@frenck.dev +description: A local NTP (Network Time Protocol) server for cameras etc. +hassio_api: true +image: ghcr.io/hassio-addons/chrony/{arch} +init: false +name: chrony +options: + mode: pool + ntp_pool: pool.ntp.org + ntp_server: + - 54.39.13.155 + - briareus.schulte.org + set_system_clock: true +ports: + 123/udp: 123 +ports_description: + 123/udp: NTP; Network Time Protocol +privileged: +- SYS_TIME +schema: + log_level: list(trace|debug|info|notice|warning|error|fatal)? + mode: list(pool|server) + ntp_pool: str? + ntp_server: + - str? + set_system_clock: bool +slug: chrony +startup: system +url: https://github.com/hassio-addons/addon-chrony +version: 48dbe81