Skip to content

Commit

Permalink
Merge pull request #263 from cybozu-go/bump-v0.10.0
Browse files Browse the repository at this point in the history
Bump version to 0.10.0
  • Loading branch information
ymmt2005 authored Jun 14, 2021
2 parents 84af826 + 701d697 commit ce0123c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<img src="./docs/logo.svg" width="160" alt="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.
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ resources:

images:
- name: ghcr.io/cybozu-go/moco
newTag: 0.9.5
newTag: 0.10.0
6 changes: 3 additions & 3 deletions version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

0 comments on commit ce0123c

Please sign in to comment.