Skip to content

Commit 2802a08

Browse files
authored
bump TiDB Operator to 1.5.1 (#5344)
1 parent 2526e0b commit 2802a08

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

charts/br-federation/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ rbac:
66
# timezone is the default system timzone
77
timezone: UTC
88

9-
image: pingcap/br-federation-manager:v1.5.0
9+
image: pingcap/br-federation-manager:v1.5.1
1010
imagePullPolicy: IfNotPresent
1111
# imagePullSecrets: []
1212

charts/tidb-cluster/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ services:
3838
type: ClusterIP
3939

4040
discovery:
41-
image: pingcap/tidb-operator:v1.5.0
41+
image: pingcap/tidb-operator:v1.5.1
4242
imagePullPolicy: IfNotPresent
4343
resources:
4444
limits:

charts/tidb-operator/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ rbac:
1212
timezone: UTC
1313

1414
# operatorImage is TiDB Operator image
15-
operatorImage: pingcap/tidb-operator:v1.5.0
15+
operatorImage: pingcap/tidb-operator:v1.5.1
1616
imagePullPolicy: IfNotPresent
1717
# imagePullSecrets: []
1818

1919
# tidbBackupManagerImage is tidb backup manager image
20-
tidbBackupManagerImage: pingcap/tidb-backup-manager:v1.5.0
20+
tidbBackupManagerImage: pingcap/tidb-backup-manager:v1.5.1
2121

2222
#
2323
# Enable or disable tidb-operator features:

deploy/aliyun/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ variable "bastion_cpu_core_count" {
1010

1111
variable "operator_version" {
1212
type = string
13-
default = "v1.5.0"
13+
default = "v1.5.1"
1414
}
1515

1616
variable "operator_helm_values" {

deploy/aws/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ variable "eks_version" {
1919

2020
variable "operator_version" {
2121
description = "TiDB operator version"
22-
default = "v1.5.0"
22+
default = "v1.5.1"
2323
}
2424

2525
variable "operator_values" {

deploy/gcp/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ variable "tidb_version" {
2828
}
2929

3030
variable "tidb_operator_version" {
31-
default = "v1.5.0"
31+
default = "v1.5.1"
3232
}
3333

3434
variable "tidb_operator_chart_version" {

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ require (
3535
github.com/pingcap/advanced-statefulset/client v1.17.1-0.20230403114412-d141a788a127
3636
github.com/pingcap/errors v0.11.4
3737
github.com/pingcap/kvproto v0.0.0-20200927054727-1290113160f0
38-
github.com/pingcap/tidb-operator/pkg/apis v1.5.0
39-
github.com/pingcap/tidb-operator/pkg/client v1.5.0
38+
github.com/pingcap/tidb-operator/pkg/apis v1.5.1
39+
github.com/pingcap/tidb-operator/pkg/client v1.5.1
4040
github.com/prometheus/client_golang v1.7.1
4141
github.com/prometheus/client_model v0.2.0
4242
github.com/prometheus/common v0.26.0

hack/bump-version.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ if [[ "$OSTYPE" == "darwin"* ]]; then
2222
fi
2323

2424
# parameters
25-
OPERATOR_OLD="v1\.5.0-beta.1"
26-
OPERATOR_NEW="v1\.5.0"
25+
OPERATOR_OLD="v1\.5.0"
26+
OPERATOR_NEW="v1\.5.1"
2727
TIDB_OLD="v6\.5\.0"
2828
TIDB_NEW="v7\.1\.1"
2929
DM_OLD="v6.5.0"

pkg/client/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/pingcap/tidb-operator/pkg/client
33
go 1.21
44

55
require (
6-
github.com/pingcap/tidb-operator/pkg/apis v1.5.0
6+
github.com/pingcap/tidb-operator/pkg/apis v1.5.1
77
k8s.io/apimachinery v0.20.15
88
k8s.io/client-go v0.20.15
99
)

0 commit comments

Comments
 (0)