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

Managing Dependent Resource Create/Update and Matching with Server Side Apply #1933

Closed
csviri opened this issue Jun 7, 2023 · 1 comment · Fixed by #1928
Closed

Managing Dependent Resource Create/Update and Matching with Server Side Apply #1933

csviri opened this issue Jun 7, 2023 · 1 comment · Fixed by #1928
Assignees
Labels
dependent-resources-epic kind/feature Categorizes issue or PR as related to a new feature.

Comments

@csviri
Copy link
Collaborator

csviri commented Jun 7, 2023

The problem:

Currently we are using post/put operations to create and update resources in dependent resources if needed. And we also introduce various way to match if the desired state is the same as the actual state from the server. In theory in some cases would be enough just to compare if the spec (and label and/or annotations) are same on the desired and actual to match the resources. However Kubernetes fills some default values and/or mutation hooks and other controllers can also fill some additional fields in a resources, thus simple compare in those cases won't work, also replacing the spec during the update would remove those (would be again added, but that is not that nice). So we introduced additional enhanced mechanisms, like just check if there were some additions on server side compared to desired state. This works mostly, however it causes a problem when some wants for example delete a list item from a desired resource, in that case it will still match the server since the diff looks like that just values added. Further possibilities were presented to the user, like ignore lists, but those needs to be explicitly configured.

Solution:

For create and update we can use SSA, this will make sure that we update all the target fields we manage / care about. This is basically trivial to implement.

What we can do however is to implement the matching also based on SSA managedFields:
We just compare the desired resource to the resource from the server but only the fields which are managed by us. So if the managed fields (by controller) of the actual resource from server are identical with compared desired fields of a resource, we consider it as a match.

The problem with this matching approach is that it quite hard to prune the actual resource based on the managed field on client side, mainly because k8s lacks documentation of the managed fields structure.

@csviri csviri added the kind/feature Categorizes issue or PR as related to a new feature. label Jun 7, 2023
@csviri csviri self-assigned this Jun 7, 2023
@csviri csviri linked a pull request Jun 7, 2023 that will close this issue
@csviri
Copy link
Collaborator Author

csviri commented Jun 7, 2023

Related issues, that this will solve:

#1914
#1907
#1888

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependent-resources-epic kind/feature Categorizes issue or PR as related to a new feature.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant