Azure / eno

Language-agnostic configuration management for Kubernetes
MIT License
7 stars 5 forks source link

Less aggressive orphaned resource cleanup #236

Closed jveski closed 1 month ago

jveski commented 1 month ago

It's unlikely but possible that namespace deletion hits the informer cache before CR deletion. So we either need to make non-caching calls before recreating the namespace of orphaned resources, or just wait for informers to catch up.

This is already such a rare case, I think the risk of making apiserver calls is unnecessary and just waiting on the informers is sufficient.