-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
⚠️ in-place propagation support for KCP #8057
⚠️ in-place propagation support for KCP #8057
Conversation
/test pull-cluster-api-e2e-full-main |
General approach seems fine to me |
48f3890
to
c275414
Compare
@ykakarap I made a first pass and I have really appreciated the consistency of this work with other PRs of the same effort, also, the implementation is really straightforward, so I'm looking forward to see the unit test and making a final pass soon |
61e1ab0
to
8f1b10a
Compare
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.
Was just taking a quick look and left some comments that might still be useful, even though the PR is WIP ;)
ef0f708
to
4a1d1a3
Compare
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.
Overall looks good to me.
Let's just please move the unrelated test changes that we don't have to do in this PR to a separate PR. Otherwise I think it will take longer to get this PR merged.
4a1d1a3
to
c5488b4
Compare
/test ? |
@ykakarap: The following commands are available to trigger required jobs:
The following commands are available to trigger optional jobs:
Use
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. |
/test pull-cluster-api-e2e-full-main |
Just a few nits and only in tests and error messages Nice work!! /assign @fabriziopandini |
c5488b4
to
a535e78
Compare
/retest |
/test pull-cluster-api-e2e-full-main |
// some parts of the controller that need SSA as the current test setup does not | ||
// support SSA. This flag should be dropped after all affected tests are migrated | ||
// to envtest. | ||
disableInPlacePropagation bool |
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.
Added a follow-up item in the umbrella issue to drop this and migrate the affected tests to envtest.
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.
👍
Thank you very much! Great work and clean implementation. And as in the previous PRs good improvements across the board in terms of general quality (go doc, tests, ...) /lgtm |
LGTM label has been added. Git tree hash: 23c88c1661b4bc56d50556e665d4c3340ad65539
|
Great work! |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: fabriziopandini 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 |
What this PR does / why we need it:
This PR implements the in-place propagation behavior for KCP.
The PR contains the following features:
kcp.spec.machineTemplate.metadata.labels
without triggering a rollout and the changes will be passed down to the target Machines.Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Fixes #
Part of #7731