Skip to content
This repository was archived by the owner on Jul 28, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions pkg/operator/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down