From 701d6970da1e8894ce407a0a5305f4bad4fd229c Mon Sep 17 00:00:00 2001 From: ymmt Date: Sun, 13 Jun 2021 13:31:23 +0000 Subject: [PATCH] Bump version to 0.10.0 --- CHANGELOG.md | 11 ++++++++++- README.md | 4 +++- kustomization.yaml | 2 +- version.go | 6 +++--- 4 files changed, 17 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8982bc42d..ff4f44afc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.10.0] - 2021-06-13 + +### Changed +- Migrate the official MySQL image repository to [quay.io/cybozu/mysql](https://quay.io/cybozu/mysql) (#262) +- Update controller-runtime to 0.9.0 (#262) +- Update fluent-bit to 1.7.8 (#263) +- Update mysqld_exporter to 0.13.0 (#263) + ## [0.9.5] - 2021-06-04 ### Fixed @@ -200,7 +208,8 @@ The `MySQLCluster` created by MOCO `< v0.5.0` has no compatibility with `>= v0.5 - Bootstrap a vanilla MySQL cluster with no replicas (#2). -[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.9.5...HEAD +[Unreleased]: https://github.com/cybozu-go/moco/compare/v0.10.0...HEAD +[0.10.0]: https://github.com/cybozu-go/moco/compare/v0.9.5...v0.10.0 [0.9.5]: https://github.com/cybozu-go/moco/compare/v0.9.4...v0.9.5 [0.9.4]: https://github.com/cybozu-go/moco/compare/v0.9.3...v0.9.4 [0.9.3]: https://github.com/cybozu-go/moco/compare/v0.9.2...v0.9.3 diff --git a/README.md b/README.md index 40fa45af3..1e40fd411 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ moco logo -MOCO is a Kubernetes operator for [MySQL][]. +MOCO is a [MySQL][] operator on Kubernetes. Its primary function is to manage MySQL clusters using [GTID-based](https://dev.mysql.com/doc/refman/8.0/en/replication-gtids.html) [semi-synchronous](https://dev.mysql.com/doc/refman/8.0/en/replication-semisync.html) replication. It does _not_ manage [group replication](https://dev.mysql.com/doc/refman/8.0/en/group-replication.html) clusters. MOCO is designed to have the following properties. @@ -22,6 +22,8 @@ MOCO is designed to have the following properties. - MOCO can quickly switch the primary in case of the primary failure or restart. - MOCO allows up to 5 instances in a cluster. +Blog article: [Introducing MOCO, a modern MySQL operator on Kubernetes](https://blog.kintone.io/entry/moco) + ## Supported software - MySQL: 8.0.18 and 8.0.25 diff --git a/kustomization.yaml b/kustomization.yaml index 07872c5e1..74d189bfe 100644 --- a/kustomization.yaml +++ b/kustomization.yaml @@ -3,4 +3,4 @@ resources: images: - name: ghcr.io/cybozu-go/moco - newTag: 0.9.5 + newTag: 0.10.0 diff --git a/version.go b/version.go index 83b02cf2f..a060da3ac 100644 --- a/version.go +++ b/version.go @@ -2,11 +2,11 @@ package moco const ( // Version is the MOCO version - Version = "0.9.5" + Version = "0.10.0" // FluentBitImage is the image for slow-log sidecar container. - FluentBitImage = "quay.io/cybozu/fluent-bit:1.7.5.1" + FluentBitImage = "quay.io/cybozu/fluent-bit:1.7.8.1" // ExporterImage is the image for mysqld_exporter sidecar container. - ExporterImage = "quay.io/cybozu/mysqld_exporter:0.13.0-rc.0.1" + ExporterImage = "quay.io/cybozu/mysqld_exporter:0.13.0.1" )