From c44fb2e88286b291fa92d809ecce724bc782d568 Mon Sep 17 00:00:00 2001 From: Kaviraj Kanagaraj Date: Thu, 24 Nov 2022 15:59:41 +0100 Subject: [PATCH] chore(tools): Update promtail image version (#7770) **What this PR does / why we need it**: update promtail version on `tools/promtail.sh` which generates promtail config for kubernetes **Which issue(s) this PR fixes**: Fixes #NA **Special notes for your reviewer**: This image is part of latest loki 2.7.0 release and[ it does exists ](https://hub.docker.com/layers/grafana/promtail/2.7.0/images/sha256-d54b599ea154df295486068f1545731bd5ab9790602d8518816c9285eec3df5e?context=repo) **Checklist** --- tools/promtail.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/promtail.sh b/tools/promtail.sh index 91e7ca2c02..5d47332551 100755 --- a/tools/promtail.sh +++ b/tools/promtail.sh @@ -6,7 +6,7 @@ INSTANCEURL="${3:-}" NAMESPACE="${4:-default}" CONTAINERROOT="${5:-/var/lib/docker}" PARSER="${6:-- docker:}" -VERSION="${PROMTAIL_VERSION:-2.6.1}" +VERSION="${PROMTAIL_VERSION:-2.7.0}" if [ -z "${INSTANCEID}" ] || [ -z "${APIKEY}" ] || [ -z "${INSTANCEURL}" ] || [ -z "${NAMESPACE}" ] || [ -z "${CONTAINERROOT}" ] || [ -z "${PARSER}" ]; then echo "usage: $0 [[[]]]"