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

OCPCLOUD-2880: label selector and labels conversion, fixes to sync controllers and conversions #281

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

Conversation

damdo
Copy link
Member

@damdo damdo commented Apr 4, 2025

This PR contains:

  • assorted fixes to the sync controllers and the conversion libraries that I picked up while running the migration controllers doing full, real, back and forth MAPI->CAPI->MAPI migrations of machines and machine sets.
  • full labels and annotations syncing between MAPI and CAPI, while also adding node labels and annotations propagation from CAPI machines down to their nodes
  • machine sets selector bidirectional conversion
  • improved diffing and diffs readability for machines and machine sets
  • temporary hardcoded credentials secret conversion support for the default case to allow for migrations to momentarily work
  • adds several TODO(docs) for lossy conversions that we might need to document (cc. @jeana-redhat)

@openshift-ci-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label Apr 4, 2025
@openshift-ci-robot
Copy link

openshift-ci-robot commented Apr 4, 2025

@damdo: This pull request references OCPCLOUD-2880 which is a valid jira issue.

Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the story to target the "4.19.0" version, but no target version was set.

In response to this:

This PR contains:

  • assorted fixes to the sync controllers and the conversion libraries that I picked up while running the migration controllers doing full, real, back and forth MAPI->CAPI->MAPI migrations of machines and machine sets.
  • full labels and annotations syncing between MAPI and CAPI, while also adding node labels and annotations propagation from CAPI machines down to their nodes
  • machine sets selector bidirectional conversion
  • improved diffing and diffs readability for machines and machine sets
  • temporary hardcoded credentials secret conversion support for the default case to allow for migrations to momentarily work
  • adds several TODO(docs) for lossy conversions that we might need to document (cc. @jeana-redhat)

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci openshift-ci bot requested review from elmiko and racheljpg April 4, 2025 13:05
Copy link
Contributor

openshift-ci bot commented Apr 4, 2025

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign damdo for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@damdo
Copy link
Member Author

damdo commented Apr 4, 2025

/assign @RadekManak @theobarberbany @JoelSpeed

Copy link
Contributor

openshift-ci bot commented Apr 4, 2025

@damdo: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/prow/regression-clusterinfra-cucushift-rehearse-capi-aws-ipi 0aa1bb6 link false /test regression-clusterinfra-cucushift-rehearse-capi-aws-ipi
ci/prow/lint 0aa1bb6 link true /test lint
ci/prow/okd-scos-e2e-aws-ovn 0aa1bb6 link false /test okd-scos-e2e-aws-ovn

Full PR test history. Your PR dashboard.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

// The conversion does not set a resource version, so we must copy it over
newMapiMachineSet.SetResourceVersion(util.GetResourceVersion(mapiMachineSet))
newMapiMachineSet.OwnerReferences = []metav1.OwnerReference{} // No CAPI machine set owner references are converted to MAPI machine set.
newMapiMachineSet.Spec.Template.ObjectMeta.Labels = util.MergeMaps(mapiMachineSet.Spec.Template.ObjectMeta.Labels, newMapiMachineSet.Spec.Template.ObjectMeta.Labels)
Copy link
Contributor

Choose a reason for hiding this comment

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

I can't remember, did we decide that we want CAPI labels to be propagated to the MAPI counterpart?

}

if diffObjectMeta := deep.Equal(typedInfraMachineTemplate1.ObjectMeta, typedinfraMachineTemplate2.ObjectMeta); len(diffObjectMeta) > 0 {
diff[".metadata"] = diffObjectMeta
Copy link
Contributor

@theobarberbany theobarberbany Apr 4, 2025

Choose a reason for hiding this comment

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

how does new approach this print? do we %+v the keys? I found the diff confusing when I was trying to debug some tests.

if mapiMachine != nil {
newMapiMachine.SetResourceVersion(util.GetResourceVersion(mapiMachine))
newMapiMachine.Spec.Labels = util.MergeMaps(mapiMachine.Spec.Labels, newMapiMachine.Spec.Labels)
newMapiMachine.Labels = util.MergeMaps(mapiMachine.Labels, newMapiMachine.Labels)
// newMapiMachine.Spec.Labels = util.MergeMaps(mapiMachine.Spec.Labels, newMapiMachine.Spec.Labels)
Copy link
Contributor

Choose a reason for hiding this comment

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

Do we want a TODO to work this out later? Why have we stopped this with labels? :)

newCAPIMachine.OwnerReferences = newCAPIOwnerReferences

if len(newCAPIMachine.OwnerReferences) > 0 {
Copy link
Contributor

Choose a reason for hiding this comment

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

🎉nice catch :)

@@ -673,6 +714,9 @@ func (r *MachineSyncReconciler) shouldMirrorCAPIMachineToMAPIMachine(ctx context
logger.V(4).WithName("shouldMirrorCAPIMachineToMAPIMachine").
Info("Checking if Cluster API machine should be mirrored", "machine", machine.GetName())

// TODO: should we check if the CAPI Machine is being deleted and do not bother creating a MAPI Machine mirror?
Copy link
Contributor

Choose a reason for hiding this comment

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

I think it's a good idea :)

return capiSelector
}

func convertCAPILabelsToMAPILabels(capiLabels map[string]string) map[string]string {
Copy link
Contributor

@theobarberbany theobarberbany Apr 4, 2025

Choose a reason for hiding this comment

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

Do we want /need unit tests for these? Are they adequately covered by the existing tests? (forgive me if I've missed them!)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
jira/valid-reference Indicates that this PR references a valid Jira ticket of any type.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants