-
Notifications
You must be signed in to change notification settings - Fork 332
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
Drop dynamic wrapper injection code generation #2742
Drop dynamic wrapper injection code generation #2742
Conversation
Codecov ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@
## main #2742 +/- ##
==========================================
- Coverage 81.53% 81.50% -0.03%
==========================================
Files 163 163
Lines 10018 10018
==========================================
- Hits 8168 8165 -3
- Misses 1606 1608 +2
- Partials 244 245 +1
☔ View full report in Codecov by Sentry. |
/assign @pierDipi |
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.
/lgtm
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: dprotaso, pierDipi 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 |
…ent_expansion.go Codegen support for informers and clients that use the dynamic.Client interface was dropped in knative/pkg#2742.
* Update dependencies to latest * Remove dependency to knative.dev/pkg/client/injection/kube/client/client_expansion.go Codegen support for informers and clients that use the dynamic.Client interface was dropped in knative/pkg#2742. * Run update-codegen.sh * Regenerate pkg/client/injection/kube * Update 3rd party eventing-latest * Install cert-manager for e2e tests Some eventing e2e tests are using eventhub.WithTLS(), which creates certificates and thus requires cert-manager in their setup. Even this tests might be skipped, as this is run in their environment setup, theses test fail if cert-manager is not installed. Therefor we need to install cert-manager for the e2e tests. * Update eventing core dependency * Fix shell lint issue
Part of #2739
This removes the codegen logic that generates informers and clients that use the dynamic.Client underneath. These aren't being used anywhere.