Skip to content

Commit

Permalink
bump some versions
Browse files Browse the repository at this point in the history
  • Loading branch information
csuzhangxc committed Sep 20, 2024
1 parent 4615834 commit b6a9e32
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tests/e2e/br/br.go
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ var _ = ginkgo.Describe("Backup and Restore", func() {
utilginkgo.ContextWhenFocus("Specific Version", func() {
cases := []*testcase{
newTestCase(utilimage.TiDBV7x5x0, utilimage.TiDBLatest, typeBR),
newTestCase(utilimage.TiDBV7x5x2, utilimage.TiDBLatest, typeBR),
newTestCase(utilimage.TiDBV7x5x3, utilimage.TiDBLatest, typeBR),
}
for i := range cases {
tcase := cases[i]
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/tidbcluster/tidbcluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -2270,7 +2270,7 @@ var _ = ginkgo.Describe("TiDBCluster", func() {
configureNewTiDBCluster: configureV8x1x0,
},
{
oldVersion: utilimage.TiDBV7x5x2,
oldVersion: utilimage.TiDBV7x5x3,
newVersion: utilimage.TiDBLatest,
configureOldTiDBCluster: configureV7x5x2,
configureNewTiDBCluster: configureV8x1x0,
Expand Down
10 changes: 5 additions & 5 deletions tests/e2e/util/image/image.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ var (

const (
// TiDB Version
TiDBLatestPrev = "v7.5.2"
TiDBLatest = "v8.1.0"
TiDBLatestPrev = "v7.5.3"
TiDBLatest = "v8.1.1"
TiDBNightlyVersion = "nightly"
// specific version
TiDBV7x5x0 = "v7.5.0"
TiDBV7x5x2 = "v7.5.2"
TiDBV7x5x3 = "v7.5.3"

PrometheusImage = "prom/prometheus"
PrometheusVersion = "v2.27.1"
Expand All @@ -47,14 +47,14 @@ const (
TiDBMonitorInitializerImage = "pingcap/tidb-monitor-initializer"
TiDBMonitorInitializerVersion = TiDBLatest
GrafanaImage = "grafana/grafana"
GrafanaVersion = "6.1.6"
GrafanaVersion = "7.5.11"
ThanosImage = "thanosio/thanos"
ThanosVersion = "v0.17.2"
DMV2Prev = TiDBLatestPrev
DMV2 = TiDBLatest
TiDBNGMonitoringLatest = TiDBLatest
HelperImage = "alpine:3.16.0"
PDMSImage = "v8.1.0"
PDMSImage = "v8.1.1"
)

func ListImages() []string {
Expand Down

0 comments on commit b6a9e32

Please sign in to comment.