-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expose concurrent reconcile configuration flags in helm chart values #517
Expose concurrent reconcile configuration flags in helm chart values #517
Conversation
Skipping CI for Draft Pull Request. |
02af30b
to
78048d9
Compare
/retest |
e990560
to
65c1db1
Compare
MaxConcurrentReconcile
parameter65c1db1
to
381cbfe
Compare
/retest |
1 similar comment
/retest |
381cbfe
to
27826c1
Compare
/retest |
1 similar comment
/retest |
Signed-off-by: Amine Hilaly <[email protected]>
templates/helm/values.yaml.tpl
Outdated
@@ -128,6 +128,12 @@ reconcile: | |||
# An object representing the reconcile resync configuration for each specific resource. | |||
resourceResyncPeriods: {} | |||
|
|||
# The default number of concurrent syncs that a reconciler can perform. | |||
defaultMaxConcurrentSyncs: 5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
leftover from testing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yesir! thank you!
fixed :)
27826c1
to
9513780
Compare
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: a-hilaly, jlbutler The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/retest |
1 similar comment
/retest |
This patch adds configuration options for reconciler concurrency tuning
(
reconcileDefaultMaxConcurrency
andreconcileResourceMaxConcurrency
)in the Helm chart values, allowing users to customize reconciliation concurrency
for ACK service controllers deployed via Helm charts.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.