2 Repos
Controls resource deletion by blocking object removal until associated external infrastructure is decommissioned.
Distinct from Lifecycle Management: Distinct from Lifecycle Management: focuses specifically on the finalizer-based blocking mechanism for infrastructure cleanup.
Explore 2 awesome GitHub repositories matching devops & infrastructure · Finalizer-Based Lifecycle Controllers. Refine with filters or upvote what's useful.
Crossplane is a Kubernetes-based control plane framework that functions as a cloud resource orchestrator and infrastructure-as-code platform. It enables the management of heterogeneous infrastructure by extending the Kubernetes API to provision and maintain external cloud services through declarative configuration. By utilizing custom resource controllers, it continuously reconciles the state of external infrastructure with defined desired states, ensuring consistent deployment and lifecycle management across multiple cloud providers. The platform distinguishes itself through its composition-
Uses finalizers to ensure external infrastructure is fully decommissioned before removing the corresponding resource object.
Kubebuilder is a framework and set of scaffolding tools used to build Kubernetes APIs and controllers. It functions as an operator framework that provides generators for custom resource definitions, admission webhooks, and RBAC manifests to extend cluster functionality. The project distinguishes itself through marker-based code generation, which parses source code comments to automatically produce Kubernetes manifests and boilerplate logic. It employs a hub-and-spoke versioning model to translate data between multiple API versions and uses a three-way merge strategy to automate project migrat
Implements finalizers to ensure external dependencies are cleaned up before a resource is deleted from the cluster.