Skip to content

Commit

Permalink
Merge branch 'master' into no-evict
Browse files Browse the repository at this point in the history
  • Loading branch information
csuzhangxc committed Jun 29, 2023
2 parents e6e15e9 + a150c2f commit bb73e82
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion charts/br-federation/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: []

Expand Down
2 changes: 1 addition & 1 deletion charts/tidb-cluster/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions charts/tidb-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion deploy/aliyun/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down
2 changes: 1 addition & 1 deletion deploy/aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down
2 changes: 1 addition & 1 deletion deploy/gcp/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions hack/bump-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion pkg/client/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down

0 comments on commit bb73e82

Please sign in to comment.