From 6933d368ca114a20d49b22e9cf3b92fbfc1d4fbf Mon Sep 17 00:00:00 2001 From: pritamdas99 Date: Mon, 23 Dec 2024 14:16:53 +0600 Subject: [PATCH] Update review changes Signed-off-by: pritamdas99 --- content/post/kubedb-v2024.12.18/index.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/content/post/kubedb-v2024.12.18/index.md b/content/post/kubedb-v2024.12.18/index.md index 2fc2767e..a2365b94 100644 --- a/content/post/kubedb-v2024.12.18/index.md +++ b/content/post/kubedb-v2024.12.18/index.md @@ -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. @@ -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 @@ -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: