diff --git a/src/main/cluster-manager.ts b/src/main/cluster-manager.ts index a1e9401e10..c0ba24cc5d 100644 --- a/src/main/cluster-manager.ts +++ b/src/main/cluster-manager.ts @@ -68,7 +68,7 @@ export class ClusterManager extends Singleton { } }); - clusters.forEach((cluster) => { + clusters.filter((c) => !c.ownerRef).forEach((cluster) => { const entityIndex = this.catalogSource.findIndex((entity) => entity.metadata.uid === cluster.id); const newEntity = this.catalogEntityFromCluster(cluster);