-
Notifications
You must be signed in to change notification settings - Fork 545
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
fix(reconciler): set command in pod spec of registry images #688
fix(reconciler): set command in pod spec of registry images #688
Conversation
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.
/lgtm
/retest
/test e2e-aws-olm |
/retest |
/retest |
/retest |
} | ||
|
||
if err := o.updateSubscriptionSetInstallPlanState(namespace, subs, installplanReference); err != nil { | ||
logger.WithError(err).Debug("error ensuring subscription installplan state") | ||
if err := o.updateSubscriptionStatus(namespace, subs, nil); err != 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.
What case does this cover? It's not immediately apparent to me.
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.
this is ensuring that subscriptions get their last update time updated whenever we've fully processed them, so that on a resync we see the time as newer and don't process when we don't need to
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.
/lgtm
/test e2e-aws |
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.
/lgtm
resolved. This solves an issue where duplicate installplans are sometimes created. It also fixes an issue where a new installplan may be created if the catalog operator restarts
/test e2e-aws |
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.
Looks great!
/lgtm
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ecordell, njhale The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
fix(reconciler): set command in pod spec of registry images
This was a part of #666 but I'm seeing weird issues with the CI, so I split it out into its own PR.