Skip to content

Commit

Permalink
bump operator to v1.6.0-alpha.10 (#5481)
Browse files Browse the repository at this point in the history
  • Loading branch information
csuzhangxc authored Dec 20, 2023
1 parent 12840ec commit 6724387
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion charts/br-federation/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ rbac:
# timezone is the default system timzone
timezone: UTC

image: pingcap/br-federation-manager:v1.6.0-alpha.8
image: pingcap/br-federation-manager:v1.6.0-alpha.10
imagePullPolicy: IfNotPresent
# imagePullSecrets: []

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.8
operatorImage: pingcap/tidb-operator:v1.6.0-alpha.10
imagePullPolicy: IfNotPresent
# imagePullSecrets: []

# tidbBackupManagerImage is tidb backup manager image
tidbBackupManagerImage: pingcap/tidb-backup-manager:v1.6.0-alpha.8
tidbBackupManagerImage: pingcap/tidb-backup-manager:v1.6.0-alpha.10

#
# Enable or disable tidb-operator features:
Expand Down
4 changes: 2 additions & 2 deletions cmd/http-service/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ require (
github.com/gin-gonic/gin v1.9.1
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.0
github.com/pingcap/log v1.1.1-0.20230317032135-a0d097d16e22
github.com/pingcap/tidb-operator/pkg/apis v1.6.0-alpha.9
github.com/pingcap/tidb-operator/pkg/client v1.6.0-alpha.9
github.com/pingcap/tidb-operator/pkg/apis v1.6.0-alpha.10
github.com/pingcap/tidb-operator/pkg/client v1.6.0-alpha.10
go.uber.org/zap v1.23.0
google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d
google.golang.org/grpc v1.58.1
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.8"
default = "v1.6.0-alpha.10"
}

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.8"
default = "v1.6.0-alpha.10"
}

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.8"
default = "v1.6.0-alpha.10"
}

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 @@ -33,8 +33,8 @@ require (
github.com/pingcap/advanced-statefulset/client v1.17.1-0.20231207074614-075934ad31d3
github.com/pingcap/errors v0.11.4
github.com/pingcap/kvproto v0.0.0-20231122054644-fb0f5c2a0a10
github.com/pingcap/tidb-operator/pkg/apis v1.6.0-alpha.8
github.com/pingcap/tidb-operator/pkg/client v1.6.0-alpha.8
github.com/pingcap/tidb-operator/pkg/apis v1.6.0-alpha.10
github.com/pingcap/tidb-operator/pkg/client v1.6.0-alpha.10
github.com/pingcap/tiproxy/lib v0.0.0-20230907130944-eb5b4b9c9e79
github.com/prometheus/client_golang v1.12.1
github.com/prometheus/client_model v0.2.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\.6\.0-alpha.7"
OPERATOR_NEW="v1\.6\.0-alpha.8"
OPERATOR_OLD="v1\.6\.0-alpha.8"
OPERATOR_NEW="v1\.6\.0-alpha.10"
TIDB_OLD="v6\.5\.0"
TIDB_NEW="v7\.1\.1"
DM_OLD="v6.5.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.21

require (
github.com/pingcap/tidb-operator/pkg/apis v1.6.0-alpha.8
github.com/pingcap/tidb-operator/pkg/apis v1.6.0-alpha.10
k8s.io/apimachinery v0.24.17
k8s.io/client-go v0.24.17
)
Expand Down

0 comments on commit 6724387

Please sign in to comment.