Fix: Add owner reference to existing resources when initially missing #8835
+80
−0
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.
Fixes #8718
Problem
ReconcileResource does not add owner references to existing resources that were created without an owner. This occurs when
NeedsUpdate()
returns false (because data, labels, and annotations haven't changed), causing the update block which contains the owner reference logic to be skipped entirely.Solution
Added a separate owner reference check that runs independently of
NeedsUpdate()
. This makes sure that owner references are added or updated on existing resources even when no other fields require updates.Changes
NeedsUpdate
block inReconcileResource
Add owner reference to existing resource without owner when NeedsUpdate returns false
to verify the fixTesting
This fix enables proper resource ownership management and garbage collection for resources created before owner references were implemented.