From baa2941db8906360475fb2f74b69f76ef0d9d79b Mon Sep 17 00:00:00 2001 From: Philipp Rothmann Date: Wed, 7 Sep 2022 15:39:10 +0200 Subject: [PATCH] foo --- abra.sh | 1 + config.yml.sample | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 abra.sh create mode 100644 config.yml.sample diff --git a/abra.sh b/abra.sh new file mode 100644 index 0000000..f83b8bb --- /dev/null +++ b/abra.sh @@ -0,0 +1 @@ +export CONFIG_YML_VERSION=v1 diff --git a/config.yml.sample b/config.yml.sample new file mode 100644 index 0000000..d94840e --- /dev/null +++ b/config.yml.sample @@ -0,0 +1,34 @@ +settings: + log: + level: INFO # Log level, DEBUG/VERBOSE/INFO/WARNING/ERROR + timestamps: false # Log with timestamps + data: + database_file: data/argus.db # SQLite DB file used to track the state of services + web: + listen_host: 0.0.0.0 # IP address to listen on + listen_port: 8080 # Port to listen on + route_prefix: / # Web route prefix, e.g. /demo means http://IP:PORT/demo to access + cert_file: "" # HTTPS Cert path, e.g. `cert.pem` + pkey_file: "" # HTTPS PrivKey path, e.g. `privkey.pem` +# basic_auth: +# username: '' # Basic auth username, e.g. `admin` +# password: '' # Basic auth password, e.g. `test123` +# +# + +service: + release-argus/argus: + options: {} + latest_version: + type: github + url: release-argus/argus + command: + - - /bin/true + - - /bin/false + webhook: {} + deployed_version: + url: https://release-argus.io/demo/api/v1/version + json: version + dashboard: + icon: https://github.com/release-argus/Argus/raw/master/web/ui/static/favicon.svg + web_url: https://github.com/release-argus/Argus/blob/master/CHANGELOG.md