Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: preserve owner references during resource updates #261

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

a-hilaly
Copy link
Member

@a-hilaly a-hilaly commented Feb 2, 2025

During resource updates, we now maintain owner references on resources managed by
the controller, similar to how we already preserve finalizers. This ensures that
existing ownership relationships are not disrupted during reconciliation. Added
integration tests to verify both finalizers and owner references are preserved
when resources are updated.

During resource updates, we now maintain owner references on resources managed by
the controller, similar to how we already preserve finalizers. This ensures that
existing ownership relationships are not disrupted during reconciliation. Added
integration tests to verify both finalizers and owner references are preserved
when resources are updated.
@amirahav
Copy link
Contributor

amirahav commented Feb 3, 2025

Do OwnerReferences get added during resource creation?
I was going to open a PR adding them during resource creation but decided not to do so based on #48

@barney-s
Copy link
Member

barney-s commented Feb 4, 2025

Cluster scoped resources cannot use namespace scoped ownerrefs. We definitely need an alternative mechanism. Or treat Cluster scoped resources as special cases.

@barney-s
Copy link
Member

barney-s commented Feb 4, 2025

Having ownerrefs is important as a fallback for cleanup. K8s ownerrefs are namespace scoped by design.

@@ -273,6 +273,8 @@ func (igr *instanceGraphReconciler) updateResource(
// TODO: Handle annotations
desired.SetResourceVersion(observed.GetResourceVersion())
desired.SetFinalizers(observed.GetFinalizers())
desired.SetOwnerReferences(observed.GetOwnerReferences())
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this for adoption use cases ?
What about setting ownerref to the instance ?

Comment on lines 275 to +276
desired.SetFinalizers(observed.GetFinalizers())
desired.SetOwnerReferences(observed.GetOwnerReferences())
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are you sure you can flat copy the observed into the desired? Has a merge already happened?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants