chore(chart): claim Full Lifecycle on Artifact Hub#99
Merged
Conversation
The reconciler already implements the level-3 contract: it corrects drift on every reconcile (rewriting destination metadata, labels, annotations, and data back to the source view), runs a finalizer that scans every namespace to clean up owned destinations on Projection deletion, and cleans up stale destinations when namespaceSelector matches change. Basic Install undersold what is shipping today.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Bumps
artifacthub.io/operatorCapabilitiesfromBasic InstalltoFull Lifecycle(level 3 of 5 on the Operator Capability Levels ladder).Why this is honest, not aspirational
Level 3 — Full Lifecycle — requires drift reconciliation, app lifecycle management, and cleanup. The controller already implements all three:
Reconcileregisters a finalizer; on Projection deletion it scans every namespace for owned destinations (necessary fornamespaceSelectorprojections) and removes them before releasing the finalizer.namespaceSelectorstops matching a namespace, the controller deletes the destination there even though the Projection itself isn't being deleted.Level 2 (Seamless Upgrades) is also covered: only one CRD version (
v1) exists, so no conversion webhook is needed, and chart upgrades are Helm-managed.What this does not claim
Level 4 (Deep Insights) intentionally stays off the table for now — the controller exposes
projection_reconcile_totalandprojection_watched_gvksplus a ServiceMonitor, but ships noPrometheusRulewith alerts. That's the natural next step.Test plan
Full Lifecycle.