From a150c2f87c3c2a6f038a7ea84823e72ff0f7272d Mon Sep 17 00:00:00 2001 From: xhe Date: Thu, 29 Jun 2023 16:20:18 +0800 Subject: [PATCH] bump operator version to 1.6.0-alpha.2 (#5102) --- charts/br-federation/values.yaml | 2 +- charts/tidb-cluster/values.yaml | 2 +- charts/tidb-operator/values.yaml | 4 ++-- deploy/aliyun/variables.tf | 2 +- deploy/aws/variables.tf | 2 +- deploy/gcp/variables.tf | 2 +- go.mod | 4 ++-- hack/bump-version.sh | 4 ++-- pkg/client/go.mod | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/charts/br-federation/values.yaml b/charts/br-federation/values.yaml index 5632737e40..ff8a398389 100644 --- a/charts/br-federation/values.yaml +++ b/charts/br-federation/values.yaml @@ -6,7 +6,7 @@ rbac: # timezone is the default system timzone timezone: UTC -image: pingcap/br-federation-manager:v1.6.0-alpha.1 +image: pingcap/br-federation-manager:v1.6.0-alpha.2 imagePullPolicy: IfNotPresent # imagePullSecrets: [] diff --git a/charts/tidb-cluster/values.yaml b/charts/tidb-cluster/values.yaml index 724fdb134c..b3fac06b27 100644 --- a/charts/tidb-cluster/values.yaml +++ b/charts/tidb-cluster/values.yaml @@ -38,7 +38,7 @@ services: type: ClusterIP discovery: - image: pingcap/tidb-operator:v1.6.0-alpha.1 + image: pingcap/tidb-operator:v1.6.0-alpha.2 imagePullPolicy: IfNotPresent resources: limits: diff --git a/charts/tidb-operator/values.yaml b/charts/tidb-operator/values.yaml index 8c60ea699b..8b292a92e4 100644 --- a/charts/tidb-operator/values.yaml +++ b/charts/tidb-operator/values.yaml @@ -12,12 +12,12 @@ rbac: timezone: UTC # operatorImage is TiDB Operator image -operatorImage: pingcap/tidb-operator:v1.6.0-alpha.1 +operatorImage: pingcap/tidb-operator:v1.6.0-alpha.2 imagePullPolicy: IfNotPresent # imagePullSecrets: [] # tidbBackupManagerImage is tidb backup manager image -tidbBackupManagerImage: pingcap/tidb-backup-manager:v1.6.0-alpha.1 +tidbBackupManagerImage: pingcap/tidb-backup-manager:v1.6.0-alpha.2 # # Enable or disable tidb-operator features: diff --git a/deploy/aliyun/variables.tf b/deploy/aliyun/variables.tf index a30fad3994..846818894c 100644 --- a/deploy/aliyun/variables.tf +++ b/deploy/aliyun/variables.tf @@ -10,7 +10,7 @@ variable "bastion_cpu_core_count" { variable "operator_version" { type = string - default = "v1.6.0-alpha.1" + default = "v1.6.0-alpha.2" } variable "operator_helm_values" { diff --git a/deploy/aws/variables.tf b/deploy/aws/variables.tf index 14d758fb67..cb00e2a5e5 100644 --- a/deploy/aws/variables.tf +++ b/deploy/aws/variables.tf @@ -19,7 +19,7 @@ variable "eks_version" { variable "operator_version" { description = "TiDB operator version" - default = "v1.6.0-alpha.1" + default = "v1.6.0-alpha.2" } variable "operator_values" { diff --git a/deploy/gcp/variables.tf b/deploy/gcp/variables.tf index fd3bcf094e..47fbf57db4 100644 --- a/deploy/gcp/variables.tf +++ b/deploy/gcp/variables.tf @@ -28,7 +28,7 @@ variable "tidb_version" { } variable "tidb_operator_version" { - default = "v1.6.0-alpha.1" + default = "v1.6.0-alpha.2" } variable "tidb_operator_chart_version" { diff --git a/go.mod b/go.mod index 163fd262d7..98a93f7829 100644 --- a/go.mod +++ b/go.mod @@ -34,8 +34,8 @@ require ( github.com/pingcap/advanced-statefulset/client v1.17.1-0.20230403114412-d141a788a127 github.com/pingcap/errors v0.11.4 github.com/pingcap/kvproto v0.0.0-20200927054727-1290113160f0 - github.com/pingcap/tidb-operator/pkg/apis v1.6.0-alpha.1 - github.com/pingcap/tidb-operator/pkg/client v1.6.0-alpha.1 + github.com/pingcap/tidb-operator/pkg/apis v1.6.0-alpha.2 + github.com/pingcap/tidb-operator/pkg/client v1.6.0-alpha.2 github.com/prometheus/client_golang v1.7.1 github.com/prometheus/client_model v0.2.0 github.com/prometheus/common v0.26.0 diff --git a/hack/bump-version.sh b/hack/bump-version.sh index 63e9a1ff5c..90db0e070f 100755 --- a/hack/bump-version.sh +++ b/hack/bump-version.sh @@ -22,8 +22,8 @@ if [[ "$OSTYPE" == "darwin"* ]]; then fi # parameters -OPERATOR_OLD="v1\.5\.0-beta.1" -OPERATOR_NEW="v1\.6.0-alpha.1" +OPERATOR_OLD="v1\.6\.0-alpha.1" +OPERATOR_NEW="v1\.6\.0-alpha.2" TIDB_OLD="v6\.1\.0" TIDB_NEW="v6\.5\.0" DM_OLD="v6.1.0" diff --git a/pkg/client/go.mod b/pkg/client/go.mod index 4c6a7e25ba..ec83de65d1 100644 --- a/pkg/client/go.mod +++ b/pkg/client/go.mod @@ -3,7 +3,7 @@ module github.com/pingcap/tidb-operator/pkg/client go 1.19 require ( - github.com/pingcap/tidb-operator/pkg/apis v1.6.0-alpha.1 + github.com/pingcap/tidb-operator/pkg/apis v1.6.0-alpha.2 k8s.io/apimachinery v0.20.15 k8s.io/client-go v0.20.15 )