@@ -205,9 +205,6 @@ func TestOverridesAPITenantExtraction(t *testing.T) {
205205 require .NoError (t , err )
206206 defer s .Close ()
207207
208- consul := e2edb .NewConsulWithName ("consul-tenant" )
209- require .NoError (t , s .StartAndWaitReady (consul ))
210-
211208 minio := e2edb .NewMinio (9010 , "cortex" )
212209 require .NoError (t , s .StartAndWaitReady (minio ))
213210
@@ -221,8 +218,6 @@ func TestOverridesAPITenantExtraction(t *testing.T) {
221218 "-overrides.s3.bucket-name" : "cortex" ,
222219 "-overrides.s3.endpoint" : minio .NetworkHTTPEndpoint (),
223220 "-overrides.s3.insecure" : "true" ,
224- "-ring.store" : "consul" ,
225- "-consul.hostname" : consul .NetworkHTTPEndpoint (),
226221 }
227222
228223 cortexSvc := e2ecortex .NewSingleBinary ("cortex-overrides-tenant" , flags , "" )
@@ -264,8 +259,6 @@ func TestOverridesAPIFilesystemBackendRejected(t *testing.T) {
264259 "-target" : "overrides" ,
265260 "-overrides.runtime-config-file" : "runtime.yaml" ,
266261 "-overrides.backend" : "filesystem" ,
267- "-ring.store" : "consul" ,
268- "-consul.hostname" : "localhost:8500" ,
269262 }
270263
271264 cortexSvc := e2ecortex .NewSingleBinary ("cortex-overrides-filesystem" , flags , "" )
@@ -283,8 +276,6 @@ func TestOverridesAPIFilesystemBackendRejected(t *testing.T) {
283276 flags := map [string ]string {
284277 "-target" : "overrides" ,
285278 "-overrides.runtime-config-file" : "runtime.yaml" ,
286- "-ring.store" : "consul" ,
287- "-consul.hostname" : "localhost:8500" ,
288279 }
289280
290281 cortexSvc := e2ecortex .NewSingleBinary ("cortex-overrides-no-backend" , flags , "" )
0 commit comments