@@ -29,7 +29,6 @@ import (
29
29
"github.com/nais/api/internal/persistence/bucket"
30
30
"github.com/nais/api/internal/persistence/kafkatopic"
31
31
"github.com/nais/api/internal/persistence/opensearch"
32
- "github.com/nais/api/internal/persistence/redis"
33
32
"github.com/nais/api/internal/persistence/sqlinstance"
34
33
"github.com/nais/api/internal/persistence/valkey"
35
34
"github.com/nais/api/internal/reconciler"
@@ -192,7 +191,6 @@ func ConfigureGraph(
192
191
jobWatcher := job .NewWatcher (ctx , watcherMgr )
193
192
runWatcher := job .NewRunWatcher (ctx , watcherMgr )
194
193
bqWatcher := bigquery .NewWatcher (ctx , watcherMgr )
195
- redisWatcher := redis .NewWatcher (ctx , watcherMgr )
196
194
valkeyWatcher := valkey .NewWatcher (ctx , watcherMgr )
197
195
openSearchWatcher := opensearch .NewWatcher (ctx , watcherMgr )
198
196
bucketWatcher := bucket .NewWatcher (ctx , watcherMgr )
@@ -216,7 +214,6 @@ func ConfigureGraph(
216
214
bucket .AddSearch (searcher , bucketWatcher )
217
215
kafkatopic .AddSearch (searcher , kafkaTopicWatcher )
218
216
opensearch .AddSearch (searcher , openSearchWatcher )
219
- redis .AddSearch (searcher , redisWatcher )
220
217
sqlinstance .AddSearch (searcher , sqlInstanceWatcher )
221
218
valkey .AddSearch (searcher , valkeyWatcher )
222
219
team .AddSearch (searcher , pool , notifier , log .WithField ("subsystem" , "team_search" ))
@@ -272,7 +269,6 @@ func ConfigureGraph(
272
269
ctx = workload .NewLoaderContext (ctx , podWatcher )
273
270
ctx = secret .NewLoaderContext (ctx , secretClientCreator , clusters , log )
274
271
ctx = opensearch .NewLoaderContext (ctx , openSearchWatcher )
275
- ctx = redis .NewLoaderContext (ctx , redisWatcher )
276
272
ctx = valkey .NewLoaderContext (ctx , valkeyWatcher )
277
273
ctx = utilization .NewLoaderContext (ctx , utilizationClient )
278
274
ctx = sqlinstance .NewLoaderContext (ctx , sqlAdminService , sqlDatabaseWatcher , sqlInstanceWatcher )
@@ -296,7 +292,6 @@ func ConfigureGraph(
296
292
ctx = feature .NewLoaderContext (
297
293
ctx ,
298
294
unleashWatcher .Enabled (),
299
- redisWatcher .Enabled (),
300
295
valkeyWatcher .Enabled (),
301
296
kafkaTopicWatcher .Enabled (),
302
297
openSearchWatcher .Enabled (),
0 commit comments