-
Notifications
You must be signed in to change notification settings - Fork 185
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
base: main
Are you sure you want to change the base?
Conversation
@@ -161,6 +162,19 @@ func (r *StorageConsumerReconciler) reconcileEnabledPhases() (reconcile.Result, | |||
return reconcile.Result{}, err | |||
} | |||
|
|||
if storageCluster.Spec.AllowRemoteStorageConsumers { |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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.
consumerProcessed, exist := r.storageConsumer.GetAnnotations()[util.StorageConsumer418ProcessedAnnotationKey] | ||
if clientOperatorVersion.Major == 4 && | ||
clientOperatorVersion.Minor == 18 && | ||
(!exist || consumerProcessed == util.StorageConsumer418ProcessedAnnotationPending) { | ||
return reconcile.Result{}, nil | ||
} | ||
} |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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{}, |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed.
Signed-off-by: Leela Venkaiah G <[email protected]>
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: leelavg 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 |
a separate controller will process older storageconsumer owned resources and until then storageconsumer controller should not proceed with reconcililation.