mirror of
https://github.com/hassio-addons/addon-chrony.git
synced 2025-05-05 11:41:38 +00:00
🔒 Sign add-on with Codenotary Community Attestation Service (CAS) (#111)
This commit is contained in:
parent
2e9756b422
commit
79adaab76d
4 changed files with 46 additions and 40 deletions
|
@ -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"
|
|
||||||
}
|
|
||||||
}
|
|
10
chrony/build.yaml
Normal file
10
chrony/build.yaml
Normal file
|
@ -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
|
|
@ -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)"
|
|
||||||
}
|
|
||||||
}
|
|
36
chrony/config.yaml
Normal file
36
chrony/config.yaml
Normal file
|
@ -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)
|
Loading…
Add table
Add a link
Reference in a new issue