From f28d7a56db8f5ade0cb916a87dd2e1e2fa6ceceb Mon Sep 17 00:00:00 2001 From: Robert Fratto Date: Tue, 22 Jun 2021 14:18:24 -0400 Subject: [PATCH 1/3] update operator to use v0.16.1 by default --- pkg/operator/defaults.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkg/operator/defaults.go b/pkg/operator/defaults.go index 9ee6420bcff9..7ae99d639de1 100644 --- a/pkg/operator/defaults.go +++ b/pkg/operator/defaults.go @@ -4,6 +4,11 @@ package operator var ( AgentCompatibilityMatrix = []string{ "v0.14.0", + "v0.15.0", + // "v0.16.0", // Pulled due to critical bug fixed in v0.16.1. + "v0.16.1", + + // NOTE(rfratto): when performing an upgrade, add the newest version above instead of changing the existing reference. } DefaultAgentVersion = AgentCompatibilityMatrix[len(AgentCompatibilityMatrix)-1] From f30d3cdcbe76a6930b2448474904aa6f16f7d76a Mon Sep 17 00:00:00 2001 From: Robert Fratto Date: Tue, 22 Jun 2021 14:20:33 -0400 Subject: [PATCH 2/3] changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 62c844406157..640746af5bb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ - [FEATURE] Add TLS config options for tempo `remote_write`s. (@mapno) +- [ENHANCEMENT] The Grafana Agent Operator will now deploy the latest release of + the Grafana Agent instead of v0.14.0. (@rfratto) + # v0.16.1 (2021-06-22) - [BUGFIX] Fix issue where replaying a WAL caused incorrect metrics to be sent From 1cc019077ffa831aa660401ee28a70df56ee3f83 Mon Sep 17 00:00:00 2001 From: Robert Fratto Date: Tue, 22 Jun 2021 14:42:01 -0400 Subject: [PATCH 3/3] improve changelog phrasing? --- CHANGELOG.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 640746af5bb7..db867e0a3db2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,9 @@ - [FEATURE] Add TLS config options for tempo `remote_write`s. (@mapno) -- [ENHANCEMENT] The Grafana Agent Operator will now deploy the latest release of - the Grafana Agent instead of v0.14.0. (@rfratto) +- [ENHANCEMENT] The Grafana Agent Operator will now default to deploying + the matching release version of the Grafana Agent instead of v0.14.0. + (@rfratto) # v0.16.1 (2021-06-22)