-
Notifications
You must be signed in to change notification settings - Fork 50
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
Add logs on host reconcile path #420
Conversation
In cases where the host is already insync and reconciled, if it was degraded before the unlock, the availability status was not being updated. This commit adds a check in the Reconcile method to ensure that the availability status it's updated if the host is already reconciled but not available. Test Plan: PASS: Build image and deploy a AIO-DX where the issue was seen. Verify that the 'degraded' status it's updated to 'available' after unlock. Signed-off-by: Enzo Candotti <[email protected]>
2bb2f82
to
f85b1bf
Compare
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.
a tiny update is expected
|
@yjian118 slices was introduced in golang 1.21, the builder uses golang 1.22.2. I think we need to bump golang version in go.mod |
@wasnio yes, we need to bump up golang version in go.mod as minum requirement. And also re-visit our internal repo to find out the golang requirement in the build enviorment |
This commits aims to add more logs in the host reconcile path since it was seen situations in which the reconciler is blocked and current logs can not give the enough information to debug it. Signed-off-by: Enzo Candotti <[email protected]>
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.
Need to resolve conflicts
This commits aims to add more logs in the host reconcile path since it was seen situations in which the reconciler is blocked and current logs can not give the enough information to debug it.