Skip to content

Releases: cybozu-go/moco

Release v0.11.0

07 Mar 02:10
1604352
Compare
Choose a tag to compare

See CHANGELOG.md for details.

In 0.11.0, we have introduced the new API version v1beta2 for the MySQLCluster and the BackupPolicy.

The MySQLCluster v1beta2 has two changes from v1beta1.

  1. Split the .spec.serviceTemplate into .spec.primaryServiceTemplate and .spec.replicaServiceTemplate.
    • So you can set individual labels and annotations for the primary service and the replica service.
  2. Change the field names from .spec.startupDelaySeconds to .spec.startupWaitSeconds.

v1beta1:

apiVersion: moco.cybozu.com/v1beta1
kind: MySQLCluster
...
spec:
  serviceTemplate:
    metadata:
      labels:
        foo: bar
  startupDelaySeconds: 21600

v1beta2:

apiVersion: moco.cybozu.com/v1beta2 # Change the api version.
kind: MySQLCluster
...
spec:
  # Split from serviceTemplate.
  primaryServiceTemplate:
    metadata:
      labels:
        foo: bar
  replicaServiceTemplate:
    metadata:
      labels:
        foo: baz

  # Change the filed name from startupDelaySeconds.
  startupWaitSeconds: 21600

The BackupPolicy v1beta2 has no change from v1beta1. We only update the API version to match with the MySQLCluster.

You can get v1beta2 resources from the applied v1beta1 resources by kubectl get.

# Get MySQLCluster v1beta2.
kubectl get mysqlclusters.v1beta2.moco.cybozu.com -n <NAMESPACE> <MYSQLCLUSTER_NAME> -o yaml

# Get BackupPolicy v1beta2.
kubectl get backuppolicies.v1beta2.moco.cybozu.com  -n <NAMESPACE> <BACKUPPOLICY_NAME> -o yaml

Release v0.10.9

18 Nov 08:56
1119bac
Compare
Choose a tag to compare

See CHANGELOG.md for details.

Release v0.10.8

12 Nov 02:50
aced496
Compare
Choose a tag to compare

See CHANGELOG.md for details.

Release v0.10.7

02 Nov 05:08
4dc591f
Compare
Choose a tag to compare

See CHANGELOG.md for details.

Release v0.10.6

05 Oct 05:15
609c7d8
Compare
Choose a tag to compare

See CHANGELOG.md for details.

Release v0.10.5

29 Jul 07:31
2f16275
Compare
Choose a tag to compare

See CHANGELOG.md for details.

Release v0.10.4

07 Jul 10:06
af89735
Compare
Choose a tag to compare

See CHANGELOG.md for details.

Release v0.10.3

06 Jul 01:50
021ce48
Compare
Choose a tag to compare

See CHANGELOG.md for details.

Release v0.10.2

24 Jun 09:12
4ba9efc
Compare
Choose a tag to compare

See CHANGELOG.md for details.

Release v0.10.1

22 Jun 07:43
10f1bcb
Compare
Choose a tag to compare

See CHANGELOG.md for details.