|
| 1 | +# Kubebuilder Project Roadmap 2024 |
| 2 | + |
| 3 | +### **(Major Release for Kubebuilder CLI 4.x)** Removing Deprecated Plugins for Enhanced Maintainability and User Experience |
| 4 | + |
| 5 | +**Status:** :construction: Work in Progress |
| 6 | + |
| 7 | +**Objective:** To remove all deprecated plugins from Kubebuilder to improve project maintainability and |
| 8 | +enhance user experience. This initiative also includes updating the project documentation to provide clear |
| 9 | +and concise information, eliminating any confusion for users. **More Info:** [GitHub Discussion #3622](https://github.com/kubernetes-sigs/kubebuilder/discussions/3622) |
| 10 | + |
| 11 | +**Motivation:** By focusing on removing deprecated plugins—specifically, versions or kinds that can no |
| 12 | +longer be supported—we aim to streamline the development process and ensure a higher quality user experience. |
| 13 | +Clear and updated documentation will further assist in making development workflows more efficient and less prone to errors. |
| 14 | + |
| 15 | +--- |
| 16 | +### Proposal Pending: Seeking Feedbacks for kube-rbac-proxy's Role in Default Scaffold |
| 17 | + |
| 18 | +**Status:** :construction: Work in Progress. See: https://github.com/kubernetes-sigs/kubebuilder/pull/3860 |
| 19 | + |
| 20 | +**Objective:** Evaluate potential modifications or the exclusion of [kube-rbac-proxy](https://github.com/brancz/kube-rbac-proxy) |
| 21 | +from the default Kubebuilder scaffold in response to deprecations and evolving user requirements. |
| 22 | + |
| 23 | +**Context:** [kube-rbac-proxy](https://github.com/brancz/kube-rbac-proxy) , a key component for securing Kubebuilder-generated projects, |
| 24 | +faces significant deprecations that impact automatic certificate generation. |
| 25 | +For more insights into these challenges, see [Issue #3524](https://github.com/kubernetes-sigs/kubebuilder/issues/3524). |
| 26 | + |
| 27 | +This situation necessitates a reevaluation of its inclusion and potentially prompts users to |
| 28 | +adopt alternatives like cert-manager by default. Additionally, the requirement to manually rebuild |
| 29 | +[kube-rbac-proxy images—due](https://github.com/kubernetes-sigs/kubebuilder/blob/master/RELEASE.md#to-build-the-kube-rbac-proxy-images) |
| 30 | +to its external status from Kubernetes-SIG—places a considerable maintenance |
| 31 | +burden on Kubebuilder maintainers. |
| 32 | + |
| 33 | +**Motivations:** |
| 34 | +- Address kube-rbac-proxy breaking changes/deprecations. |
| 35 | + - For further information: [Issue #3524 - kube-rbac-proxy warn about deprecation and future breaking changes](https://github.com/kubernetes-sigs/kubebuilder/issues/3524) |
| 36 | +- Feedback from the community has highlighted a preference for cert-manager's default integration, aiming security with Prometheus and metrics. |
| 37 | + - More info: [GitHub Issue #3524 - Improve scaffolding of ServiceMonitor](https://github.com/kubernetes-sigs/kubebuilder/issues/3657) |
| 38 | +- Desire for kube-rbac-proxy to be optional, citing its prescriptive nature. |
| 39 | + - See: [Issue #3482 - The kube-rbac-proxy is too opinionated to be opt-out.](https://github.com/kubernetes-sigs/kubebuilder/issues/3482) |
| 40 | +- Reduce the maintainability effort to generate the images used by Kubebuilder projects and dependency within third-party solutions. |
| 41 | + - Related issues: |
| 42 | + - [Issue #1885 - use a NetworkPolicy instead of kube-rbac-proxy](https://github.com/kubernetes-sigs/kubebuilder/issues/1885) |
| 43 | + - [Issue #3230 - Migrate away from google.com gcp project kubebuilder](https://github.com/kubernetes-sigs/kubebuilder/issues/3230) |
| 44 | + |
| 45 | +**Proposed Solutions:** |
| 46 | + |
| 47 | +- **Making kube-rbac-proxy Optional:** Offering users the option to include kube-rbac-proxy caters to diverse project |
| 48 | + requirements and simplifies the transition towards its potential externalization or removal, |
| 49 | + reducing future maintenance efforts. |
| 50 | + |
| 51 | +- **Leveraging NetworkPolicies:** This alternative focuses on minimizing external dependencies by |
| 52 | + utilizing Kubernetes-native solutions like NetworkPolicies, in line with our maintenance reduction goals. |
| 53 | + |
| 54 | +- **Default Enablement of cert-manager:** While not directly addressing the maintenance concerns related to |
| 55 | + kube-rbac-proxy, defaulting to cert-manager responds to community feedback and navigates the upcoming deprecations. |
| 56 | + This strategy also acknowledges cert-manager's existing role as a prerequisite for webhooks. |
| 57 | + |
| 58 | +--- |
| 59 | +### Providing Helpers for Project Distribution |
| 60 | + |
| 61 | +#### Distribution via Kustomize |
| 62 | + |
| 63 | +**Status:** :white_check_mark: Complete |
| 64 | + |
| 65 | +As of release ([v3.14.0](https://github.com/kubernetes-sigs/kubebuilder/releases/tag/v3.14.0)), |
| 66 | +Kubebuilder includes enhanced support for project distribution. |
| 67 | +Users can now scaffold projects with a `build-installer` makefile target. |
| 68 | +This improvement enables the straightforward deployment of solutions directly to Kubernetes clusters. |
| 69 | +Users can deploy their projects using commands like: |
| 70 | + |
| 71 | +```shell |
| 72 | +kubectl apply -f https://raw.githubusercontent.com/<org>/my-project/<tag or branch>/dist/install.yaml |
| 73 | +``` |
| 74 | + |
| 75 | +This enhancement streamlines the process of getting Kubebuilder projects running on clusters, providing a seamless deployment experience. |
| 76 | + |
| 77 | +#### (New Optional Plugin) Helm Chart Packaging |
| 78 | + |
| 79 | +**Status:** :raised_hands: Proposal in Progress; Seeking Contributions |
| 80 | + |
| 81 | +**Objective:** We aim to introduce a new plugin for Kubebuilder that packages projects as Helm charts, |
| 82 | +facilitating easier distribution and integration of solutions within the Kubernetes ecosystem. For details on this proposal and how to contribute, |
| 83 | +see [GitHub Pull Request #3632](https://github.com/kubernetes-sigs/kubebuilder/pull/3632). |
| 84 | + |
| 85 | +**Motivation:** The growth of the Kubernetes ecosystem underscores the need for flexible and |
| 86 | +accessible distribution methods. A Helm chart packaging plugin would simplify the distribution of the solutions |
| 87 | +and allow easily integrations with common applications used by administrators. |
| 88 | + |
| 89 | +--- |
| 90 | +### Updating Scaffolding to Align with the Latest changes of controller-runtime |
| 91 | + |
| 92 | +**Status:** :raised_hands: Seeking help from the contributors |
| 93 | + |
| 94 | +**Objective:** Update Kubebuilder's controller scaffolding to align with the latest changes |
| 95 | +in controller-runtime, focusing on compatibility and addressing recent updates and deprecations |
| 96 | +mainly related to webhooks. |
| 97 | + |
| 98 | +**Context:** Kubebuilder's plugin system is designed for stability, yet it depends on controller-runtime, |
| 99 | +which is evolving rapidly with versions still under 1.0.0. Notable changes and deprecations, |
| 100 | +especially around webhooks, necessitate Kubebuilder's alignment with the latest practices |
| 101 | +and functionalities of controller-runtime. We need update the Kubebuilder scaffolding, |
| 102 | +samples, and documentation. |
| 103 | + |
| 104 | +**References:** |
| 105 | +- [Issue - Deprecations in Controller-Runtime and Impact on Webhooks](https://github.com/kubernetes-sigs/kubebuilder/issues/3721) - An issue detailing the deprecations in controller-runtime that affect Kubebuilder's approach to webhooks. |
| 106 | +- [PR - Update to Align with Latest Controller-Runtime Webhook Interface](https://github.com/kubernetes-sigs/kubebuilder/pull/3399) - A pull request aimed at updating Kubebuilder to match controller-runtime's latest webhook interface. |
| 107 | +- [PR - Enhancements to Controller Scaffolding for Upcoming Controller-Runtime Changes](https://github.com/kubernetes-sigs/kubebuilder/pull/3723) - A pull request proposing enhancements to Kubebuilder's controller scaffolding in anticipation of upcoming changes in controller-runtime. |
| 108 | + |
| 109 | +--- |
| 110 | +### Transition from Google Cloud Platform (GCP) to build and promote binaries and images |
| 111 | + |
| 112 | +**Status:** :construction: Seeking Feedbacks and Contributions |
| 113 | +- **Kubebuilder CLI**: :white_check_mark: Complete. It has been building using go releaser. [More info](./../build/.goreleaser.yml) |
| 114 | +- **kube-rbac-proxy Images:** :raised_hands: Seeking Feedback, see: https://github.com/kubernetes-sigs/kubebuilder/pull/3860 |
| 115 | +- **EnvTest binaries:** :construction: Controller-Runtime maintainers are working in a solution to build them out and take the ownership over this one. More info: |
| 116 | + - https://kubernetes.slack.com/archives/C02MRBMN00Z/p1712457941924299 |
| 117 | + - https://kubernetes.slack.com/archives/CCK68P2Q2/p1713174342482079 |
| 118 | + |
| 119 | +**Objective:** Shift Kubernetes (k8s) project infrastructure from GCP to shared infrastructures. |
| 120 | +Furthermore, move away from the registry `k8s.gcr.io` to `registry.k8s.io`. |
| 121 | + |
| 122 | +**Motivation:** The initiative to move away from GCP aligns with the broader k8s project's |
| 123 | +goal of utilizing shared infrastructures. This transition is crucial for ensure the availability |
| 124 | +of the artifacts in the long run and align complience with other projects under the kubernetes-sig org. |
| 125 | +[Issue #2647](https://github.com/kubernetes/k8s.io/issues/2647) provides more details on the move. |
| 126 | + |
| 127 | +**Context:** Currently, Google Cloud is used only for: |
| 128 | + |
| 129 | +- **Rebuild and provide the images for kube-rbac-proxy:** |
| 130 | + |
| 131 | +A particular challenge has been the necessity to rebuild images for the |
| 132 | +[kube-rbac-proxy](https://github.com/brancz/kube-rbac-proxy), which is in the process of being |
| 133 | +donated to kubernetes-sig. This transition was expected to eliminate the need for |
| 134 | +continuous re-tagging and rebuilding of its images to ensure their availability to users. |
| 135 | +The configuration for building these images is outlined |
| 136 | +[here](https://github.com/kubernetes-sigs/kubebuilder/blob/master/RELEASE.md#to-build-the-kube-rbac-proxy-images). |
| 137 | + |
| 138 | +- **Build and Promote EnvTest binaries**: |
| 139 | + |
| 140 | +The development of Kubebuilder Tools and EnvTest binaries, |
| 141 | +essential for controller tests, represents another area reliant on k8s binaries |
| 142 | +traditionally built within GCP environments. Our documentation on building these artifacts is |
| 143 | +available [here](https://github.com/kubernetes-sigs/kubebuilder/blob/master/RELEASE.md#to-build-the-kubebuilder-tools-artifacts-required-to-use-env-test). |
| 144 | + |
| 145 | +**We encourage the Kubebuilder community to participate in this discussion, offering feedback and contributing ideas |
| 146 | +to refine these proposals. Your involvement is crucial in shaping the future of secure and efficient project scaffolding in Kubebuilder.** |
0 commit comments