-
Notifications
You must be signed in to change notification settings - Fork 21
Update the controller names from the propagator #664
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
Update the controller names from the propagator #664
Conversation
A change in the propagator split up the `policy-propagator` controller into a 2 controllers: `root-policy-spec`, and `replicated-policy`. So the old metrics are no longer reported, and these tests should check for the new ones. Refs: - open-cluster-management-io/governance-policy-propagator#130 Signed-off-by: Justin Kulikauskas <[email protected]>
/retest |
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.
Thanks, @JustinKuli!
I think this one has now failed twice:
|
Something seems to be happening with a PolicySet. The test that is failing is because a policy in a set is not being distributed to Based on the logs from the propagator, when it tries to look up that PolicySet (from a reference in a PlacementBinding, I think), it gets a "not found". And earlier, the policyset-controller logs a similar error, on its reconciles for that PolicySet:
|
/retest |
27af7b7
to
530cc31
Compare
/retest |
530cc31
to
d4aa155
Compare
Oh my goodness. It finally worked. 🎉 🤯 Good work! Do you want to keep the debug in there or take it out before merging it? |
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.
/hold (in case the debug logs should be removed)
The default clusterset was causing some problems in some envs. Signed-off-by: Justin Kulikauskas <[email protected]>
d4aa155
to
fca8c40
Compare
I feel like I'm tempting fate by removing the debugs logs and trying again, but here it goes! |
/retest |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: dhaiducek, JustinKuli 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 |
/unhold |
/cherry-pick release-2.9 |
@dhaiducek: new pull request created: #665 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. |
A change in the propagator split up the
policy-propagator
controller into a 2 controllers:root-policy-spec
, andreplicated-policy
. So the old metrics are no longer reported, and these tests should check for the new ones.Refs: