From 79adaab76ddcb2b419dcbec748257515ffd9d3e4 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Thu, 17 Mar 2022 18:27:13 +0100 Subject: [PATCH] :lock: Sign add-on with Codenotary Community Attestation Service (CAS) (#111) --- chrony/build.json | 9 --------- chrony/build.yaml | 10 ++++++++++ chrony/config.json | 31 ------------------------------- chrony/config.yaml | 36 ++++++++++++++++++++++++++++++++++++ 4 files changed, 46 insertions(+), 40 deletions(-) delete mode 100644 chrony/build.json create mode 100644 chrony/build.yaml delete mode 100644 chrony/config.json create mode 100644 chrony/config.yaml diff --git a/chrony/build.json b/chrony/build.json deleted file mode 100644 index 0fadd3e..0000000 --- a/chrony/build.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "build_from": { - "aarch64": "ghcr.io/hassio-addons/base/aarch64:11.1.0", - "amd64": "ghcr.io/hassio-addons/base/amd64:11.1.0", - "armhf": "ghcr.io/hassio-addons/base/armhf:11.1.0", - "armv7": "ghcr.io/hassio-addons/base/armv7:11.1.0", - "i386": "ghcr.io/hassio-addons/base/i386:11.1.0" - } -} diff --git a/chrony/build.yaml b/chrony/build.yaml new file mode 100644 index 0000000..cb7c940 --- /dev/null +++ b/chrony/build.yaml @@ -0,0 +1,10 @@ +--- +build_from: + aarch64: ghcr.io/hassio-addons/base/aarch64:11.1.0 + amd64: ghcr.io/hassio-addons/base/amd64:11.1.0 + armhf: ghcr.io/hassio-addons/base/armhf:11.1.0 + armv7: ghcr.io/hassio-addons/base/armv7:11.1.0 + i386: ghcr.io/hassio-addons/base/i386:11.1.0 +codenotary: + base_image: codenotary@frenck.dev + signer: codenotary@frenck.dev diff --git a/chrony/config.json b/chrony/config.json deleted file mode 100644 index 6eb2cc1..0000000 --- a/chrony/config.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "name": "chrony", - "version": "dev", - "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)" - } -} diff --git a/chrony/config.yaml b/chrony/config.yaml new file mode 100644 index 0000000..40401d2 --- /dev/null +++ b/chrony/config.yaml @@ -0,0 +1,36 @@ +--- +name: chrony +version: dev +slug: chrony +description: A local NTP (Network Time Protocol) server for cameras etc. +url: https://github.com/hassio-addons/addon-chrony +codenotary: codenotary@frenck.dev +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)