You have seen in the previous chapters how to define new resources to be served by the API Server using Custom Resources Definitions (CRD), and how to build Operators, using the controller-runtime library.
The Kubebuilder SDK is dedicated to help you create new resources and their related Operators. It provides commands to bootstrap a project defining a Manager, and to add resources and their related controllers to the project.
Once the source code for new custom resources and controllers is generated, ...