Using Event Filters with Kubebuilder
Part 2: Filtering Updates
Background As I recently posted, I’ve worked on a couple of projects that have involved using Kubebuilder to create Kubernetes operators.
In last post we looked at using event filters to prevent delete notifications being processed by the reconciliation loop. Another thing I’ve noticed as I’ve been developing operators is that the flow when an object is created is typically: receive create notification, take some action, update the object Status property.
[Read More]