-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Deprecated SDK impl of DynamicRESTMapper and replace its usage for controller-runtime impl #2309
Deprecated SDK impl of DynamicRESTMapper and replace its usage for controller-runtime impl #2309
Conversation
CHANGELOG.md
Outdated
|
||
### Deprecated | ||
- Deprecated the `operator-sdk generate openapi` command. CRD generation is still supported with `operator-sdk generate crds`. It is now recommended to use [openapi-gen](https://github.com/kubernetes/kube-openapi/tree/master/cmd/openapi-gen) directly for OpenAPI code generation. The `generate openapi` subcommand will be removed in a future release. ([#2276](https://github.com/operator-framework/operator-sdk/pull/2276)) | ||
- Deprecated the `github.com/operator-framework/operator-sdk/pkg/restmapper` since it was added to the [controller-runtime](https://github.com/operator-framework/operator-sdk/issues/2299) which is now recommended to be used instead of. ([#2309](https://github.com/operator-framework/operator-sdk/pull/2309)) | ||
|
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.
Hi @estroz,
Since you did the kubernetes-sigs/controller-runtime#554 could you please help us by doing its review and confirming my understanding and if it is ok?
…r to use the controller-runtime impl instead of
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
after addressing nits.
Co-Authored-By: Eric Stroczynski <[email protected]>
Co-Authored-By: Eric Stroczynski <[email protected]>
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
…er-runtime one Since operator-sdk v0.14.0 usage of DynamicRestMapper implementation done by the operator-sdk is removed and it is now provided by controller-runtime and configured and set by the operator-sdk operator-framework/operator-sdk#2309
…er-runtime one Since operator-sdk v0.14.0 usage of DynamicRestMapper implementation done by the operator-sdk is removed and it is now provided by controller-runtime and configured and set by the operator-sdk operator-framework/operator-sdk#2309
…er-runtime one Since operator-sdk v0.14.0 usage of DynamicRestMapper implementation done by the operator-sdk is removed and it is now provided by controller-runtime and configured and set by the operator-sdk operator-framework/operator-sdk#2309
…er-runtime one Since operator-sdk v0.14.0 usage of DynamicRestMapper implementation done by the operator-sdk is removed and it is now provided by controller-runtime and configured and set by the operator-sdk operator-framework/operator-sdk#2309
…er-runtime one Since operator-sdk v0.14.0 usage of DynamicRestMapper implementation done by the operator-sdk is removed and it is now provided by controller-runtime and configured and set by the operator-sdk operator-framework/operator-sdk#2309
…er-runtime one Since operator-sdk v0.14.0 usage of DynamicRestMapper implementation done by the operator-sdk is removed and it is now provided by controller-runtime and configured and set by the operator-sdk operator-framework/operator-sdk#2309
…er-runtime one Since operator-sdk v0.14.0 usage of DynamicRestMapper implementation done by the operator-sdk is removed and it is now provided by controller-runtime and configured and set by the operator-sdk operator-framework/operator-sdk#2309
…er-runtime one Since operator-sdk v0.14.0 usage of DynamicRestMapper implementation done by the operator-sdk is removed and it is now provided by controller-runtime and configured and set by the operator-sdk operator-framework/operator-sdk#2309
…er-runtime one Since operator-sdk v0.14.0 usage of DynamicRestMapper implementation done by the operator-sdk is removed and it is now provided by controller-runtime and configured and set by the operator-sdk operator-framework/operator-sdk#2309
…er-runtime one Since operator-sdk v0.14.0 usage of DynamicRestMapper implementation done by the operator-sdk is removed and it is now provided by controller-runtime and configured and set by the operator-sdk operator-framework/operator-sdk#2309
Description of the change:
Motivation for the change:
Closes #2299