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

do not reconcile older storageconsumer #3129

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

Conversation

leelavg
Copy link
Contributor

@leelavg leelavg commented Apr 3, 2025

a separate controller will process older storageconsumer owned resources and until then storageconsumer controller should not proceed with reconcililation.

@@ -161,6 +162,19 @@ func (r *StorageConsumerReconciler) reconcileEnabledPhases() (reconcile.Result,
return reconcile.Result{}, err
}

if storageCluster.Spec.AllowRemoteStorageConsumers {
Copy link
Contributor

Choose a reason for hiding this comment

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

Why do we need this check here. It is implicit that if we have a pre 4.19 consumer then we don't proceed

Copy link
Contributor Author

@leelavg leelavg Apr 4, 2025

Choose a reason for hiding this comment

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

I was adding it to not always check for version if we weren't in provider mode, anyways removed.

Comment on lines 170 to 172
consumerProcessed, exist := r.storageConsumer.GetAnnotations()[util.StorageConsumer418ProcessedAnnotationKey]
if clientOperatorVersion.Major == 4 &&
clientOperatorVersion.Minor == 18 &&
(!exist || consumerProcessed == util.StorageConsumer418ProcessedAnnotationPending) {
return reconcile.Result{}, nil
}
}
Copy link
Contributor

Choose a reason for hiding this comment

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

Please remove any annotation logic from this PR. We will introduce similar logic based on feedback coming from the upgrade controller implementation

Copy link
Contributor Author

Choose a reason for hiding this comment

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

removed.

For(&ocsv1alpha1.StorageConsumer{}, builder.WithPredicates(
predicate.Or(
predicate.GenerationChangedPredicate{},
predicate.AnnotationChangedPredicate{},
Copy link
Contributor

Choose a reason for hiding this comment

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

Please remove any annotation logic from this PR. We will introduce similar logic based on feedback coming from the upgrade controller implementation

Copy link
Contributor Author

Choose a reason for hiding this comment

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

removed.

Copy link
Contributor

openshift-ci bot commented Apr 4, 2025

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: leelavg
Once this PR has been reviewed and has the lgtm label, please ask for approval from nb-ohad. 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

@leelavg leelavg changed the title do not reconcile older storageconsumer unless resources are processed do not reconcile older storageconsumer Apr 4, 2025
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.

2 participants