diff --git a/charts/tidb-cluster/values.yaml b/charts/tidb-cluster/values.yaml index e0bca177c88..7f3f78cf1c2 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.3.1 + image: pingcap/tidb-operator:v1.3.2 imagePullPolicy: IfNotPresent resources: limits: diff --git a/charts/tidb-operator/values.yaml b/charts/tidb-operator/values.yaml index 63a17185669..e28e8a29a3b 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.3.1 +operatorImage: pingcap/tidb-operator:v1.3.2 imagePullPolicy: IfNotPresent # imagePullSecrets: [] # tidbBackupManagerImage is tidb backup manager image -tidbBackupManagerImage: pingcap/tidb-backup-manager:v1.3.1 +tidbBackupManagerImage: pingcap/tidb-backup-manager:v1.3.2 # # Enable or disable tidb-operator features: diff --git a/deploy/aliyun/variables.tf b/deploy/aliyun/variables.tf index f792d42ce14..5bbaa6e2e2e 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.3.1" + default = "v1.3.2" } variable "operator_helm_values" { diff --git a/deploy/aws/variables.tf b/deploy/aws/variables.tf index 2f1bc1a9247..2ddd3b5b610 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.3.1" + default = "v1.3.2" } variable "operator_values" { diff --git a/deploy/gcp/variables.tf b/deploy/gcp/variables.tf index cf4a99f77b3..ca9c558d672 100644 --- a/deploy/gcp/variables.tf +++ b/deploy/gcp/variables.tf @@ -28,7 +28,7 @@ variable "tidb_version" { } variable "tidb_operator_version" { - default = "v1.3.1" + default = "v1.3.2" } variable "tidb_operator_chart_version" { diff --git a/go.mod b/go.mod index 27c16d99c08..db9a3a25c72 100644 --- a/go.mod +++ b/go.mod @@ -49,8 +49,8 @@ require ( github.com/pingcap/errors v0.11.0 github.com/pingcap/kvproto v0.0.0-20200927054727-1290113160f0 github.com/pingcap/tidb v2.1.0-beta+incompatible - github.com/pingcap/tidb-operator/pkg/apis v1.3.1 - github.com/pingcap/tidb-operator/pkg/client v1.3.1 + github.com/pingcap/tidb-operator/pkg/apis v1.3.2 + github.com/pingcap/tidb-operator/pkg/client v1.3.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 06649e40007..c321eb66c0b 100755 --- a/hack/bump-version.sh +++ b/hack/bump-version.sh @@ -22,8 +22,8 @@ if [[ "$OSTYPE" == "darwin"* ]]; then fi # parameters -OPERATOR_OLD="v1\.3\.0" -OPERATOR_NEW="v1\.3\.1" +OPERATOR_OLD="v1\.3\.1" +OPERATOR_NEW="v1\.3\.2" TIDB_OLD="v5\.3\.0" TIDB_NEW="v5\.4\.0" DM_OLD="v5.3.0" diff --git a/pkg/client/go.mod b/pkg/client/go.mod index 7316934eb9d..99c6efed134 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.13 require ( - github.com/pingcap/tidb-operator/pkg/apis v1.3.1 + github.com/pingcap/tidb-operator/pkg/apis v1.3.2 k8s.io/apimachinery v0.19.16 k8s.io/client-go v0.19.16 )