Search code examples
kubernetesarchitecturekubernetes-custom-resources

Control Loop Implementation - Kubernetes Alternatives


We are in the process of designing a cloud native application that needs a control loop to keep its objects (few thousands) in desired state. Other than implementing the application as a set of Kubernetes CRDs, we are wondering whether there are any other open source alternatives. If you have developed your own custom implementation of control loop, can you please let us know the reasons behind that decision (as opposed to using Kubernetes CRDs)?


Solution

  • Your description seems to fit with the purpose of a CRD controller.

    Check the Kubebuilder framework, you can bootstrap a controller quickly and you will just need to implement the reconcile loop