Skip to content

Commit e274ae0

Browse files
authored
Add release 1.10 to the backwards compatibility matrix (cortexproject#4407)
Signed-off-by: Bryan Boreham <[email protected]>
1 parent 2d1604c commit e274ae0

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

.github/workflows/test-build-deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ jobs:
140140
docker pull quay.io/cortexproject/cortex:v1.7.0
141141
docker pull quay.io/cortexproject/cortex:v1.8.0
142142
docker pull quay.io/cortexproject/cortex:v1.9.0
143+
docker pull quay.io/cortexproject/cortex:v1.10.0
143144
docker pull shopify/bigtable-emulator:0.1.0
144145
docker pull rinscy/cassandra:3.11.0
145146
docker pull memcached:1.6.1

integration/backward_compatibility_test.go

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,17 @@ var (
2020
// If you change the image tag, remember to update it in the preloading done
2121
// by GitHub Actions too (see .github/workflows/test-build-deploy.yml).
2222
previousVersionImages = map[string]func(map[string]string) map[string]string{
23-
"quay.io/cortexproject/cortex:v1.0.0": preCortex14Flags,
24-
"quay.io/cortexproject/cortex:v1.1.0": preCortex14Flags,
25-
"quay.io/cortexproject/cortex:v1.2.0": preCortex14Flags,
26-
"quay.io/cortexproject/cortex:v1.3.0": preCortex14Flags,
27-
"quay.io/cortexproject/cortex:v1.4.0": preCortex16Flags,
28-
"quay.io/cortexproject/cortex:v1.5.0": preCortex16Flags,
29-
"quay.io/cortexproject/cortex:v1.6.0": preCortex110Flags,
30-
"quay.io/cortexproject/cortex:v1.7.0": preCortex110Flags,
31-
"quay.io/cortexproject/cortex:v1.8.0": preCortex110Flags,
32-
"quay.io/cortexproject/cortex:v1.9.0": preCortex110Flags,
23+
"quay.io/cortexproject/cortex:v1.0.0": preCortex14Flags,
24+
"quay.io/cortexproject/cortex:v1.1.0": preCortex14Flags,
25+
"quay.io/cortexproject/cortex:v1.2.0": preCortex14Flags,
26+
"quay.io/cortexproject/cortex:v1.3.0": preCortex14Flags,
27+
"quay.io/cortexproject/cortex:v1.4.0": preCortex16Flags,
28+
"quay.io/cortexproject/cortex:v1.5.0": preCortex16Flags,
29+
"quay.io/cortexproject/cortex:v1.6.0": preCortex110Flags,
30+
"quay.io/cortexproject/cortex:v1.7.0": preCortex110Flags,
31+
"quay.io/cortexproject/cortex:v1.8.0": preCortex110Flags,
32+
"quay.io/cortexproject/cortex:v1.9.0": preCortex110Flags,
33+
"quay.io/cortexproject/cortex:v1.10.0": nil,
3334
}
3435
)
3536

0 commit comments

Comments
 (0)