From 09eeb850d41d50e87964b5df2d1bc2e2e8efb8a1 Mon Sep 17 00:00:00 2001 From: Markus Blaschke Date: Wed, 1 Jul 2020 21:57:40 +0200 Subject: [PATCH] Release 20.7.0 Signed-off-by: Markus Blaschke --- CHANGELOG.md | 7 +++++++ README.md | 9 ++++----- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d26f6d..ed5e8af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [20.7.0] - 2020-07-01 +- Disable http server by default +- Cleanup +- Added env variable `LOG_JSON` and `VERBOSE` +- Added various Docker image builds (alpine, debian, ubuntu) +- Switch to `ENTRYPOINT` instead of `CMD` for Dockerfiles + ## [20.6.0] - 2020-06-29 - Switch to [Calendar Versioning](https://calver.org/) with `YY.MM.MICRO format` (year, month, increment) - Implemented new build system diff --git a/README.md b/README.md index 771c35d..258affd 100644 --- a/README.md +++ b/README.md @@ -53,11 +53,10 @@ Application Options: -V, --version show version and exit --dumpversion show only version number and exit -h, --help show this help message - -v, --verbose verbose mode - --log.json Switch log output to json format - --server.bind= Server address (eg. prometheus metrics) (default: :8080) [$SERVER_BIND] + -v, --verbose verbose mode [$VERBOSE] + --log.json Switch log output to json format [$LOG_JSON] + --server.bind= Server address, eg. ':8080' (/healthz and /metrics for prometheus) [$SERVER_BIND] --server.metrics Enable prometheus metrics (do not use senstive informations in commands -> use environment variables or files for storing these informations) [$SERVER_METRICS] - ``` Crontab files can be added as arguments or automatic included by using eg. `--include=crond-path/` @@ -100,7 +99,7 @@ Run crond with run-parts with custom time spec and different user: ## Installation ```bash -GOCROND_VERSION=20.6.0 \ +GOCROND_VERSION=20.7.0 \ && wget -O /usr/local/bin/go-crond https://github.com/webdevops/go-crond/releases/download/$GOCROND_VERSION/go-crond-64-linux \ && chmod +x /usr/local/bin/go-crond ```