-
Notifications
You must be signed in to change notification settings - Fork 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
fix(clusterapi): HasInstance with namespace prefix #6776
fix(clusterapi): HasInstance with namespace prefix #6776
Conversation
Hi @mweibel. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. 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. |
c616556
to
332ac2c
Compare
ping @elmiko @MaxFedotov for authoring/reviewing the original PR #6708 |
@mweibel Thanks, that's my bad - I was looking as an example at autoscaler/cluster-autoscaler/cloudprovider/clusterapi/clusterapi_controller.go Lines 335 to 336 in 4f1c8e6
Although there is a test for this function, which passed without errors, there are two problems in it (which I missed completely):
While in Also, So your logic in this case is correct, thanks for finding this out! But to prevent such problems in the future, we need to update tests as well. @elmiko WDYT? I can make a separate issue and update all tests. |
@MaxFedotov thanks! I tried updating the tests by doing the following change: diff --git a/cluster-autoscaler/cloudprovider/clusterapi/clusterapi_controller_test.go b/cluster-autoscaler/cloudprovider/clusterapi/clusterapi_controller_test.go
index fc89fdae5..e374ea447 100644
--- a/cluster-autoscaler/cloudprovider/clusterapi/clusterapi_controller_test.go
+++ b/cluster-autoscaler/cloudprovider/clusterapi/clusterapi_controller_test.go
@@ -458,7 +458,8 @@ func makeLinkedNodeAndMachine(i int, namespace, clusterName string, owner metav1
ObjectMeta: metav1.ObjectMeta{
Name: fmt.Sprintf("%s-%s-node-%d", namespace, owner.Name, i),
Annotations: map[string]string{
- machineAnnotationKey: fmt.Sprintf("%s/%s-%s-machine-%d", namespace, namespace, owner.Name, i),
+ machineAnnotationKey: fmt.Sprintf("%s-%s-machine-%d", namespace, owner.Name, i),
+ clusterNamespaceAnnotationKey: namespace,
},
},
Spec: corev1.NodeSpec{ As a result |
/test pull-cluster-autoscaler-e2e-azure @mweibel I'm maintainining some Azure-infra cluster-autoscaler tests, one scenario of which includes the clusterapi provider (running in Azure via CAPZ), so this test run will get some basic signal against your change |
@MaxFedotov i definitely think it would be cool to make the tests more accurate. although, i don't want to break other stuff. @mweibel thanks for the PR, i'm still understanding the nuances that you and Max are talking about. but i will spend some time today/tomorrow reviewing this. |
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.
i think this looks good, just a question about failures
btw it would be great if somebody could give this an /ok-to-test. Thanks! |
/ok-to-test |
apologies @mweibel i lost track of this PR a little, wonder if there were any further thoughts from @jackfrancis about the last comment? |
bumping this hoping to get a reply from @jackfrancis regarding what @elmiko asked :) |
code lgtm What's the latest on the viability of updating the tests as per the above conversation between @mweibel and @MaxFedotov? |
332ac2c
to
98f9489
Compare
@jackfrancis thanks for the reminder! I had another look this morning on the tests and actually found a missing update to a Would be great to get another review. Given that I overlooked one call for findMachine I wonder if we should adjust the functions signature to accept a namespace/name or something similar to avoid potential issues in the future. |
@mweibel i'll take a look this week, thanks for the update! |
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.
this looks good to me, thanks for keeping it alive.
i'm adding lgtm for now to give a last chance for reviews, if nothing comes up i will approve by end of week (unless someone beats me to it XD).
/lgtm
it seems like there are no further requests or objections, so i am going to approve this. thanks everyone! /approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: elmiko, mweibel 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 |
@elmiko thanks for merging! can you take care of including this in the next patch release, too? 🙇 |
@mweibel yes,i will try to make sure that it's in the next patch release. |
What type of PR is this?
/kind bug
What this PR does / why we need it:
fixes lookup of Machines in MachineInformer store for the
HasInstance
caseWhich issue(s) this PR fixes:
Fixes #6774
Special notes for your reviewer:
It would be good to verify this with other kind of clusters and/or flags (I'm testing on a CAPZ cluster) to make sure the lookup works in all cases.
Does this PR introduce a user-facing change?