Skip to content

Commit f0f34ba

Browse files
drivebyercndoit18
authored andcommitted
bump mysql default version to 5.7.35
1 parent 2fe89f4 commit f0f34ba

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88
### Added
99
* `MysqlDatabase` `MysqlUser` Add delete policy
1010
### Changed
11+
* Set default MySQL server version to `5.7.35`
1112
### Removed
1213
### Fixed
1314
* `orchestrator.secretName` is ignored in helm charts

pkg/util/constants/constants.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,16 @@ const (
8282

8383
var (
8484
// MySQLDefaultVersion is the version for mysql that should be used
85-
MySQLDefaultVersion = semver.MustParse("5.7.31")
85+
MySQLDefaultVersion = semver.MustParse("5.7.35")
8686
// MySQLTagsToSemVer maps simple version to semver versions
8787
MySQLTagsToSemVer = map[string]string{
88-
"5.7": "5.7.31",
88+
"5.7": "5.7.35",
8989
"8.0": "8.0.20",
9090
}
9191
// MysqlImageVersions is a map of supported mysql version and their image
9292
MysqlImageVersions = map[string]string{
93-
93+
// percona:5.7.35 CentOS based image
94+
"5.7.35": "percona@sha256:caab4e854bd75040d07802bf1862bfef1d2b4db0acbc9c4aaf5c21c698fdd393",
9495
// percona:5.7.31-centos
9596
"5.7.31": "percona@sha256:68dad5e2efeb6893e2d7d116a1eae144f2c641c17d00e7869397395590c91651",
9697
// This version of mysql has a bug and doesn't work with the operator,

0 commit comments

Comments
 (0)