From 97e36472bb38bbc28c3122f12515f2a33417151d Mon Sep 17 00:00:00 2001 From: Fabien Boucher Date: Thu, 6 Jun 2024 14:00:57 +0200 Subject: [PATCH] fix / release v0.0.31 - missing annotation into the MariaDB statefulset Change-Id: I88397bd5645a2f5c664364176643e57ccfcb8bb6 --- controllers/mariadb.go | 1 + doc/reference/CHANGELOG.md | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/controllers/mariadb.go b/controllers/mariadb.go index 7355dfe6..43f7392c 100644 --- a/controllers/mariadb.go +++ b/controllers/mariadb.go @@ -272,6 +272,7 @@ GRANT ALL ON *.* TO root@'%%' WITH GRANT OPTION;`, annotations := map[string]string{ "serial": "5", + "image": base.MariaDBImage(), "limits": limitstr, } if r.cr.Spec.FluentBitLogForwarding != nil { diff --git a/doc/reference/CHANGELOG.md b/doc/reference/CHANGELOG.md index 4bbc3261..a685b154 100644 --- a/doc/reference/CHANGELOG.md +++ b/doc/reference/CHANGELOG.md @@ -10,6 +10,11 @@ All notable changes to this project will be documented in this file. ### Fixed ### Security +## [v0.0.31] - 2024-06-06 +### Fixed + +- MariaDB: Statefull update to 10.6 + ## [v0.0.30] - 2024-06-06 ### Changed