Replies: 1 comment 2 replies
-
Thanks for raising this! I’m not entirely sure I follow your question fully, so just to clarify how the current model works:
I suggest checking these sections of the Kubebuilder book for foundational insights:
If I misunderstood your intent or setup, feel free to share more details, and I’ll be happy to take another look! |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Current concurrency control in controller framework does not provide a way to dynamically route a specfific subset of events to one of
Reconcile
goroutine.Do you see any issue self managing multiple
workqueue
and use toplevelReconcile
call just to route it to correct queue and let background worker do the actual custom reconciliation logic after pulling items from thier respective queues.Apart from Retry/Forget what all caveats i should keep in mind?
Beta Was this translation helpful? Give feedback.
All reactions