-
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
✨ Topology Mutation Hook: Implement external patching #6623
✨ Topology Mutation Hook: Implement external patching #6623
Conversation
4d8fc83
to
6aa39f5
Compare
6aa39f5
to
45d9755
Compare
internal/controllers/topology/cluster/patches/external/external_patch_generator.go
Outdated
Show resolved
Hide resolved
internal/controllers/topology/cluster/patches/external/external_patch_generator.go
Show resolved
Hide resolved
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.
Made a first quick pass, overall lgtm.
It is really exciting to see all the pieces finally coming together
a74ce34
to
875d610
Compare
8770859
to
dae68ae
Compare
@@ -361,7 +366,17 @@ func TestApply(t *testing.T) { | |||
blueprint, desired := setupTestObjects() | |||
|
|||
// If there are patches, set up patch generators. | |||
patchEngine := NewEngine() | |||
// FIXME(sbueringer) implement test for external patches |
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.
Current version is still missing these tests.
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.
Just to clarify: Plan is to add them in a follow-up PR which will be up today or tomorrow
d7ecab4
to
2ae268f
Compare
2ae268f
to
df5773c
Compare
Signed-off-by: Stefan Büringer [email protected] Co-authored-by: killianmuldoon <[email protected]>
df5773c
to
998bc05
Compare
/lgtm |
@sbueringer: you cannot LGTM your own PR. 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. |
/lgtm |
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.
Great job!
/lgtm
/approve
[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 |
Signed-off-by: Stefan Büringer [email protected]
What this PR does / why we need it:
Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Part of #6545