Closed zreigz closed 3 months ago
To get rid of the finalizer I used EventFilter which is called before Reconcile method. It prevents the situation when r.Get(ctx, req.NamespacedName, configMap) return NotFound error and we can't properly clean up the inventory cache.
Reconcile
r.Get(ctx, req.NamespacedName, configMap)
NotFound
To get rid of the finalizer I used EventFilter which is called before
Reconcile
method. It prevents the situation whenr.Get(ctx, req.NamespacedName, configMap)
returnNotFound
error and we can't properly clean up the inventory cache.