Skip to content
This repository was archived by the owner on May 28, 2021. It is now read-only.

Commit 0a757a6

Browse files
prydieowainlewis
authored andcommitted
Release 0.2.0 CHANGELOG and version bump (#170)
* Release 0.2.0 * Debugging added to tests
1 parent 2e5d928 commit 0a757a6

File tree

4 files changed

+26
-8
lines changed

4 files changed

+26
-8
lines changed

CHANGELOG.md

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,29 @@
11
# CHANGELOG
22

3+
## 0.2.0
4+
5+
**MAJOR BACKWARDS INCOMPATIBLE CHANGES**. For an overview of the changes and
6+
upgrade information please see [`docs/0.1-upgrade.md`][1].
7+
8+
- Enforce 8.0.11 as the minimum supported MySQL server version. [#169]
9+
- Numerous changes to the MySQL Operator Custom Resources. [#123]
10+
- Downgrade the MySQL Operator Custom Resource API version from v1 to v1alpha1
11+
to enable future iteration on the API and better reflect its stability [#122]
12+
- Group communication connections as are now secured using SSL with support for
13+
specifying your own certificate [#115].
14+
15+
## 0.1.1
16+
17+
- Allow any version string to be used in Cluster spec. [#120]
18+
319
## 0.1.0
420

5-
Initial release of Oracle MySQL Operator
21+
Initial release of Oracle MySQL Operator.
622

7-
* Create and manage MySQL clusters
8-
* Implement full cluster backup to S3 using mysqldump
9-
* Implement ability to restore cluster from backup
10-
* Expose cluster metrics with Prometheus
11-
* Helm chart for deploying the operator
23+
- Create and manage MySQL clusters.
24+
- Implement full cluster backup to S3 using mysqldump.
25+
- Implement ability to restore cluster from backup.
26+
- Expose cluster metrics with Prometheus.
27+
- Helm chart for deploying the operator.
1228

29+
[1]: https://github.com/oracle/mysql-operator/blob/master/docs/0.1-upgrade.md

docs/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Parameter | Description | Default
7676
`rbac.enabled` | If true, enables RBAC | `true`
7777
`operator.namespace` | Controls the namespace in which the operator is deployed | `mysql-operator`
7878
`operator.global` | Controls whether the `mysql-operator` is installed in cluster-wide mode or in a single namespace | `true`
79-
`image.tag` | The version of the mysql-operator to install | `0.1.1`
79+
`image.tag` | The version of the mysql-operator to install | `0.2.0`
8080

8181
## Create a simple MySQL cluster
8282

mysql-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ operator:
66
register_crd: true
77
image:
88
registry: iad.ocir.io/oracle
9-
tag: 0.1.1
9+
tag: 0.2.0
1010
pullPolicy: Always

test/e2e/framework/cluster.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ func (j *ClusterTestJig) waitForConditionOrFail(namespace, name string, timeout
136136
func (j *ClusterTestJig) WaitForClusterReadyOrFail(namespace, name string, timeout time.Duration) *v1alpha1.Cluster {
137137
Logf("Waiting up to %v for Cluster \"%s/%s\" to be ready", timeout, namespace, name)
138138
cluster := j.waitForConditionOrFail(namespace, name, timeout, "have all nodes ready", func(cluster *v1alpha1.Cluster) bool {
139+
Logf("Cluster conditions: %#v", cluster.Status.Conditions)
139140
return clusterutil.IsClusterReady(cluster)
140141
})
141142
return cluster

0 commit comments

Comments
 (0)