-
Notifications
You must be signed in to change notification settings - Fork 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
k8s.io/client-go/tools/cache .ResourceEventHandlerRegistration (missing method HasSynced) #1245
Comments
meet the same problem here: openshift/ingress-node-firewall#334 |
I think you need to update controller-runtime to a version that includes kubernetes-sigs/controller-runtime#2223 before updating to client-go 0.27.0 (which may mean controller-runtime needs to tag a version that includes that) |
@liggitt Thank you so much! |
This was referenced May 3, 2023
Closed
1 task
1 task
4 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
operator-framework/operator-sdk#6396
.ResourceEventHandlerRegistration does not implement "k8s.io/client-go/tools/cache".ResourceEventHandlerRegistration (missing method HasSynced)
This problem occurs after update the client-go to " >= v0.27.0".
The type ResourceEventHandlerRegistration is added to client-go from v0.26.0. But it is different with 0.27.0.
0.26.0:
type ResourceEventHandlerRegistration interface{}
0.26.4
type ResourceEventHandlerRegistration interface{}
0.27.0
The text was updated successfully, but these errors were encountered: