File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -82,15 +82,16 @@ const (
8282
8383var (
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,
You can’t perform that action at this time.
0 commit comments