-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
🌱 Improve ClusterClass watch for ExtensionConfigs #9338
🌱 Improve ClusterClass watch for ExtensionConfigs #9338
Conversation
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.
/area runtime-sdk
internal/controllers/clusterclass/clusterclass_controller_test.go
Outdated
Show resolved
Hide resolved
internal/controllers/clusterclass/clusterclass_controller_test.go
Outdated
Show resolved
Hide resolved
Would like to cherry-pick to release-1.5 based on
/cherry-pick release-1.5 (technically this could also be seen as a bugfix as with a high number of ClusterClasses and ExtensionConfigs we trigger way too many reconciles today) |
@sbueringer: once the present PR merges, I will cherry-pick it on top of release-1.5 in a new PR and assign it to you. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
a756466
to
a57ade9
Compare
Signed-off-by: killianmuldoon <[email protected]>
a57ade9
to
713fbfa
Compare
Thx! Especially for the good test coverage! /lgtm |
LGTM label has been added. Git tree hash: d59b055a826a5477cc33b59686d872056ff048bc
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: sbueringer 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 |
/hold (just to actually run the affected e2e tests before we merge & cherry-pick) |
/test pull-cluster-api-e2e-full-main |
@killianmuldoon: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
Failed the autoscaler test as expected - there's no rush to get this in until we have that fixed though. |
Absolutely fine with me. I'm also fine with merging this as it's pretty clear that everything else is green and this PR can't break the autoscaler test further |
Let's merge it then - one more piece of WIP off the table /hold cancel |
@sbueringer: new pull request created: #9356 In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Ensure the ClusterClass controller's watch on ExtensionConfigs correctly filters extensions so that only ClusterClasses referencing the config cause reconcile loops.
Fixes #8495