Skip to content

Commit cc96eac

Browse files
authored
Change prometheus image of TestNativeHistogramFuzz (#6942)
* Change prometheus image of TestNativeHistogramFuzz Signed-off-by: SungJin1212 <[email protected]> * Add prometheus v3.5.0 to preload image Signed-off-by: SungJin1212 <[email protected]> * Delete unused prometheus images Signed-off-by: SungJin1212 <[email protected]> --------- Signed-off-by: SungJin1212 <[email protected]>
1 parent a7592b6 commit cc96eac

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,7 @@ jobs:
210210
docker pull quay.io/cortexproject/cortex:v1.18.1
211211
elif [ "$TEST_TAGS" = "integration_query_fuzz" ]; then
212212
docker pull quay.io/cortexproject/cortex:v1.18.1
213-
docker pull quay.io/prometheus/prometheus:v2.51.0
214-
docker pull quay.io/prometheus/prometheus:v2.55.1
213+
docker pull quay.io/prometheus/prometheus:v3.5.0
215214
fi
216215
docker pull memcached:1.6.1
217216
docker pull redis:7.0.4-alpine

integration/query_fuzz_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ func TestNativeHistogramFuzz(t *testing.T) {
136136

137137
err = writeFileToSharedDir(s, "prometheus.yml", []byte(""))
138138
require.NoError(t, err)
139-
prom := e2edb.NewPrometheus("quay.io/prometheus/prometheus:v3.3.1", nil)
139+
prom := e2edb.NewPrometheus("", nil)
140140
require.NoError(t, s.StartAndWaitReady(prom))
141141

142142
c2, err := e2ecortex.NewPromQueryClient(prom.HTTPEndpoint())

0 commit comments

Comments
 (0)