From 1b2ae3f57bcbaf5e371f32fc72ed16557cb2cf13 Mon Sep 17 00:00:00 2001 From: liyao Date: Wed, 25 Oct 2023 19:04:50 +0800 Subject: [PATCH] chore: update proxy version in operator (#449) * chore: update example proxy version Signed-off-by: mlycore * chore: update supported version Signed-off-by: mlycore Signed-off-by: mlycore --------- Signed-off-by: mlycore Signed-off-by: mlycore --- .../shardingsphere-computenode-mysql-cluster-with-agent.yaml | 2 +- examples/operator/shardingsphere-computenode-mysql-cluster.yaml | 2 +- .../operator/shardingsphere-computenode-mysql-standalone.yaml | 2 +- shardingsphere-operator/pkg/kubernetes/helpers.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/operator/shardingsphere-computenode-mysql-cluster-with-agent.yaml b/examples/operator/shardingsphere-computenode-mysql-cluster-with-agent.yaml index cc60499c..e7f60f59 100644 --- a/examples/operator/shardingsphere-computenode-mysql-cluster-with-agent.yaml +++ b/examples/operator/shardingsphere-computenode-mysql-cluster-with-agent.yaml @@ -30,7 +30,7 @@ spec: storageNodeConnector: type: mysql version: 5.1.47 - serverVersion: 5.3.2 + serverVersion: 5.4.1 replicas: 1 selector: matchLabels: diff --git a/examples/operator/shardingsphere-computenode-mysql-cluster.yaml b/examples/operator/shardingsphere-computenode-mysql-cluster.yaml index 332452ad..38e3c5a0 100644 --- a/examples/operator/shardingsphere-computenode-mysql-cluster.yaml +++ b/examples/operator/shardingsphere-computenode-mysql-cluster.yaml @@ -25,7 +25,7 @@ spec: storageNodeConnector: type: mysql version: 5.1.47 - serverVersion: 5.3.2 + serverVersion: 5.4.1 replicas: 1 selector: matchLabels: diff --git a/examples/operator/shardingsphere-computenode-mysql-standalone.yaml b/examples/operator/shardingsphere-computenode-mysql-standalone.yaml index 861f875a..ed08c282 100644 --- a/examples/operator/shardingsphere-computenode-mysql-standalone.yaml +++ b/examples/operator/shardingsphere-computenode-mysql-standalone.yaml @@ -25,7 +25,7 @@ spec: storageNodeConnector: type: mysql version: 5.1.47 - serverVersion: 5.3.1 + serverVersion: 5.4.1 replicas: 1 selector: matchLabels: diff --git a/shardingsphere-operator/pkg/kubernetes/helpers.go b/shardingsphere-operator/pkg/kubernetes/helpers.go index 8a4ba938..0d6afaf5 100644 --- a/shardingsphere-operator/pkg/kubernetes/helpers.go +++ b/shardingsphere-operator/pkg/kubernetes/helpers.go @@ -24,7 +24,7 @@ import ( ) var ( - supportedShardingSphereVersion = []string{"5.3.0", "5.3.1", "5.3.2", "5.4.0"} + supportedShardingSphereVersion = []string{"5.3.0", "5.3.1", "5.3.2", "5.4.0", "5.4.1"} ) func patchHeadingV(version string) string {