-
Notifications
You must be signed in to change notification settings - Fork 101
THREESCALE-14654 Fix status reconciler requeue logic #1177
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
Open
urbanikb
wants to merge
1
commit into
3scale:master
Choose a base branch
from
urbanikb:THREESCALE-14654
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+19
−29
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,6 +5,7 @@ import ( | |
| "fmt" | ||
| "sort" | ||
| "strings" | ||
| "time" | ||
|
|
||
| appsv1alpha1 "github.com/3scale/3scale-operator/apis/apps/v1alpha1" | ||
| subController "github.com/3scale/3scale-operator/controllers/subscription" | ||
|
|
@@ -49,33 +50,22 @@ func (s *APIManagerStatusReconciler) Reconcile() (reconcile.Result, error) { | |
| return reconcile.Result{}, fmt.Errorf("failed to calculate status: %w", err) | ||
| } | ||
|
|
||
| // Read availability from the newly computed status, not the stale pre-reconcile snapshot. | ||
| // Using old status caused a True-to-False requeue gap: old=Available=True would suppress | ||
| // the requeue even after writing Available=False to the API server (THREESCALE-10754). | ||
| newAvailable := newStatus.Conditions.IsTrueFor(appsv1alpha1.APIManagerAvailableConditionType) | ||
|
|
||
| equalStatus := s.apimanagerResource.Status.Equals(newStatus, s.logger) | ||
| s.logger.V(1).Info("Status", "status is different", !equalStatus) | ||
| if equalStatus && newAvailable { | ||
| // Steady state | ||
| s.logger.V(1).Info("Status was not updated") | ||
| return reconcile.Result{}, nil | ||
| } | ||
|
|
||
| s.apimanagerResource.Status = *newStatus | ||
| updateErr := s.Client().Status().Update(s.Context(), s.apimanagerResource) | ||
| if updateErr != nil { | ||
| // Ignore conflicts, resource might just be outdated. | ||
| if errors.IsConflict(updateErr) { | ||
| s.logger.Info("Failed to update status: resource might just be outdated") | ||
| return reconcile.Result{Requeue: true}, nil | ||
| if !equalStatus { | ||
| s.logger.V(1).Info("Status is different") | ||
| s.apimanagerResource.Status = *newStatus | ||
| if err := s.Client().Status().Update(s.Context(), s.apimanagerResource); err != nil { | ||
| return reconcile.Result{}, fmt.Errorf("failed to update status: %w", err) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We now ignore the Conflict error? |
||
| } | ||
|
|
||
| return reconcile.Result{}, fmt.Errorf("failed to update status: %w", updateErr) | ||
| } else { | ||
| s.logger.V(1).Info("Status was not updated") | ||
| } | ||
|
|
||
| // Re-check status periodically specifically only when availability is failing; this | ||
| // is an optimization - once we're available we rely only on watch events + re-sync interval | ||
| newAvailable := newStatus.Conditions.IsTrueFor(appsv1alpha1.APIManagerAvailableConditionType) | ||
| if !newAvailable { | ||
| return reconcile.Result{Requeue: true}, nil | ||
| return reconcile.Result{RequeueAfter: 30 * time.Second}, nil | ||
| } | ||
|
|
||
| return reconcile.Result{}, nil | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
We only check the last one?
reconcileAPIManagerStatusis called more than once