Enhancement: Make controller worker count configurable - #150
Open
jlamillan wants to merge 3 commits into
Open
Conversation
jlamillan
force-pushed
the
jlamillan/configurable-num-workers
branch
from
June 29, 2026 17:15
eff82f3 to
8debf1d
Compare
Signed-off-by: jesse.millan <jesse.millan@oracle.com>
jlamillan
force-pushed
the
jlamillan/configurable-num-workers
branch
from
July 2, 2026 19:03
8debf1d to
8afb548
Compare
jlamillan
force-pushed
the
jlamillan/configurable-num-workers
branch
from
July 29, 2026 21:18
8afb548 to
ec266f3
Compare
Signed-off-by: jesse.millan <jesse.millan@oracle.com>
jlamillan
force-pushed
the
jlamillan/configurable-num-workers
branch
from
July 31, 2026 20:47
ec266f3 to
ea61d33
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Make the OCI Native Ingress controller worker count configurable with a new
--num-workersflag, defaulting to 3 to preserve existing behavior.Why
The controller currently runs each workqueue with a hard-coded worker count of
3. During busy reconciliation, long-running OCI load balancer operations can occupy those workers and delay queued ingress, ingress class, routing policy, and backend reconciliation. Exposing--num-workersallows deployments to increase controller throughput when needed without changing the default behavior.