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

feat: SSA based dependent resource matching and create/update #1928

Merged
merged 25 commits into from
Jun 15, 2023

Conversation

csviri
Copy link
Collaborator

@csviri csviri commented Jun 1, 2023

The PR has two main parts:

  1. changed the default way how the dependent resources create/update the target resource. From now on it will use by default server side apply.

  2. It provides a new default matcher the SSABasedGenericKubernetesResourceMatcher. The intention with this new matcher is to provide a better default. This won't be perfect, thus for sure there are corner cases that are not covered. Either we will patch it or just advise to implement a specific matcher for the users use-case.

@csviri csviri force-pushed the processor-matcher branch from 9c6c44d to 1ae332d Compare June 8, 2023 13:48
@csviri csviri marked this pull request as ready for review June 9, 2023 08:18
@csviri
Copy link
Collaborator Author

csviri commented Jun 9, 2023

@metacosm will introduce a separate feature flag for matching, and have that set for legacy while have set the update/create to SSA. I think that is a good compromise.

@csviri
Copy link
Collaborator Author

csviri commented Jun 9, 2023

@metacosm will introduce a separate feature flag for matching, and have that set for legacy while have set the update/create to SSA. I think that is a good compromise.

Added the additional feature flag, but defaulted it also to true. Thus by default SSA based matcher will be turned on. We can always just tell the users to turn it off with the flag.

Copy link
Collaborator

@metacosm metacosm left a comment

Choose a reason for hiding this comment

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

LGTM as far as I can tell without diving into the managed fields structure. This is why it's important to document some of the steps so that future maintainers will be able to understand some of the things the current implementation does, in particular with respect to the more exotic fields.

}

@SuppressWarnings("unchecked")
private static void keepOnlyManagedFields(Map<String, Object> result,
Copy link
Collaborator

Choose a reason for hiding this comment

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

Is there no way to return the pruned map instead of passing it as a parameter?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

probably is, just would need a refactor. If you insist can do that. A separate PR?


// list entries referenced by key, or when "k:" prefix is used
@SuppressWarnings("unchecked")
private static void handleListKeyEntrySet(Map<String, Object> result,
Copy link
Collaborator

Choose a reason for hiding this comment

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

Please add documentation as to what this method is doing and why.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

added


// set values, the "v:" prefix
@SuppressWarnings("rawtypes")
private static void handleSetValues(Map<String, Object> result, Map<String, Object> actualMap,
Copy link
Collaborator

Choose a reason for hiding this comment

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

Please add documentation about what this method is doing and why.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

added docs

return isKeyPrefixedSkippingDotKey(managedEntrySet, K_PREFIX);
}

private static boolean isKeyPrefixedSkippingDotKey(Set<Map.Entry<String, Object>> managedEntrySet,
Copy link
Collaborator

Choose a reason for hiding this comment

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

This method is weird. Why do we only look at the first element of the set? Why do we only skip the dot key if it's the first element? Please add documentation as to what this method does and why.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

added docs

}
// this should not happen in theory
if (targetManagedFields.size() > 1) {
log.debug("More than one field manager exists with name: {} in resource: {} with name: {} ",
Copy link
Collaborator

Choose a reason for hiding this comment

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

Maybe this should throw an exception if this isn't supposed to happen, instead of simply logging as something is probably very wrong in this case.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

changed

@csviri
Copy link
Collaborator Author

csviri commented Jun 14, 2023

LGTM as far as I can tell without diving into the managed fields structure. This is why it's important to document some of the steps so that future maintainers will be able to understand some of the things the current implementation does, in particular with respect to the more exotic fields.

yep, tbh there are some corner cases that are probably not covered, but should be very rare, I expect that we will need to do some forward fixes. But will document the the current one more in depth according to your comments.

@csviri csviri requested a review from metacosm June 14, 2023 09:18
@sonarqubecloud
Copy link

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 17 Code Smells

67.6% 67.6% Coverage
0.0% 0.0% Duplication

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.

Managing Dependent Resource Create/Update and Matching with Server Side Apply
2 participants