Skip to content

Commit 922e517

Browse files
authored
bump operator to v1.3.9 (#4736)
1 parent 70343c7 commit 922e517

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

charts/tidb-cluster/values.yaml

Lines changed: 1 addition & 1 deletion
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.3.8
41+
image: pingcap/tidb-operator:v1.3.9
4242
imagePullPolicy: IfNotPresent
4343
resources:
4444
limits:

charts/tidb-operator/values.yaml

Lines changed: 2 additions & 2 deletions
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.3.8
15+
operatorImage: pingcap/tidb-operator:v1.3.9
1616
imagePullPolicy: IfNotPresent
1717
# imagePullSecrets: []
1818

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

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

deploy/aliyun/variables.tf

Lines changed: 1 addition & 1 deletion
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.3.8"
13+
default = "v1.3.9"
1414
}
1515

1616
variable "operator_helm_values" {

deploy/aws/variables.tf

Lines changed: 1 addition & 1 deletion
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.3.8"
22+
default = "v1.3.9"
2323
}
2424

2525
variable "operator_values" {

deploy/gcp/variables.tf

Lines changed: 1 addition & 1 deletion
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.3.8"
31+
default = "v1.3.9"
3232
}
3333

3434
variable "tidb_operator_chart_version" {

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ require (
5151
github.com/pingcap/errors v0.11.0
5252
github.com/pingcap/kvproto v0.0.0-20200927054727-1290113160f0
5353
github.com/pingcap/tidb v2.1.0-beta+incompatible
54-
github.com/pingcap/tidb-operator/pkg/apis v1.3.8
55-
github.com/pingcap/tidb-operator/pkg/client v1.3.8
54+
github.com/pingcap/tidb-operator/pkg/apis v1.3.9
55+
github.com/pingcap/tidb-operator/pkg/client v1.3.9
5656
github.com/prometheus/client_golang v1.7.1
5757
github.com/prometheus/client_model v0.2.0
5858
github.com/prometheus/common v0.26.0

hack/bump-version.sh

Lines changed: 2 additions & 2 deletions
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\.3\.7"
26-
OPERATOR_NEW="v1\.3\.8"
25+
OPERATOR_OLD="v1\.3\.8"
26+
OPERATOR_NEW="v1\.3\.9"
2727
TIDB_OLD="v5\.4\.0"
2828
TIDB_NEW="v5\.4\.1"
2929
DM_OLD="v5.4.0"

pkg/client/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/pingcap/tidb-operator/pkg/client
33
go 1.13
44

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

0 commit comments

Comments
 (0)