Skip to content

Commit

Permalink
Update review changes
Browse files Browse the repository at this point in the history
Signed-off-by: pritamdas99 <[email protected]>
  • Loading branch information
pritamdas99 committed Dec 23, 2024
1 parent f6816ef commit 6933d36
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions content/post/kubedb-v2024.12.18/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ Added support for SQL Server version `2022-CU16-ubuntu-22.04`, providing compati


## MySQL
In this release, we added support for new `MySQL` version, improved `MySQL` continuous archiving and `PITR` within `KubeDB`, and `MySQL` replication mode change(remote replica to group replication) ops-request.
In this release, we added support for new `MySQL` version, improved `MySQL` continuous archiving and `PITR` within `KubeDB`, `Multi-Primary` support in group replication mode and `MySQL` replication mode change(remote replica to group replication) ops-request.

### New Version
Support for MySQL version `8.4.3`, `9.0.1`, `9.1.0` has been added in the new release.
Expand Down Expand Up @@ -692,18 +692,21 @@ spec:
apply: Always
```

Here you can mention the mode of group replication single or Multi primary, requireSSL and issuerRef for TLS secure connection on group replication mode.


### Multi Master Support
Multi-Primary support for Group Replication has been added in this release. MySQL version `8.4.2` or above supports Multi-Primary mode. You must specify `Multi-Primary` in the `.spec.topology.group.mode` section of MySQL Group Replication’s YAML configuration. By default, it operates in `Single-Primary` group mode.
Below is an example YAML configuration:

```yaml
apiVersion: kubedb.com/v1alpha2
apiVersion: kubedb.com/v1
kind: MySQL
metadata:
name: my-multi-primary
namespace: demo
spec:
version: "8.4.2"
version: "9.1.0"
replicas: 3
topology:
mode: GroupReplication
Expand All @@ -716,11 +719,9 @@ spec:
resources:
requests:
storage: 1Gi
terminationPolicy: WipeOut
deletionPolicy: WipeOut
```

Here you can mention the mode of group replication single or Multi primary, requireSSL and issuerRef for TLS secure connection on group replication mode.

## Postgres

### Point-in-Time Recovery (PITR) Enhancements:
Expand Down

0 comments on commit 6933d36

Please sign in to comment.