-
Notifications
You must be signed in to change notification settings - Fork 20
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
MTSRE-259 | integrate status reporting the hard way #5
MTSRE-259 | integrate status reporting the hard way #5
Conversation
Signed-off-by: Yashvardhan Kukreja <[email protected]>
Signed-off-by: Yashvardhan Kukreja <[email protected]>
Signed-off-by: Yashvardhan Kukreja <[email protected]>
23b9fbe
to
e1c2fa4
Compare
Signed-off-by: Yashvardhan Kukreja <[email protected]>
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: yashvardhan-kukreja 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 |
/retest |
Signed-off-by: Yashvardhan Kukreja <[email protected]>
Signed-off-by: Yashvardhan Kukreja <[email protected]>
09ec1fd
to
0600ffe
Compare
…s API Signed-off-by: Yashvardhan Kukreja <[email protected]>
Todo: if the current approach of heartbeat reporting (r.latestHeartbeat, r.GetLatestHeartbeat(), r.SetLatestHeartbeat()) gets approved, then we can proceed with adding concurrency safety to |
internal/utils/temporary_utils.go
Outdated
@@ -0,0 +1,118 @@ | |||
// TO BE REMOVED AFTER INTEGRATING ADDON INSTANCE CLIENT SDK |
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 file is in dire need of some unittests :)
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.
Yes! I planned to write the unit tests after the implementation was accepted for this status reporting. Otherwise, after every review, the tests would have required to get refactored as well :)
…tNamespace and addonName
Signed-off-by: Yashvardhan Kukreja <[email protected]>
…econciler Signed-off-by: Yashvardhan Kukreja <[email protected]>
5d02eac
to
208a35c
Compare
Signed-off-by: Yashvardhan Kukreja <[email protected]>
…donInstance heartbeatUpdatePeriod Signed-off-by: Yashvardhan Kukreja <[email protected]>
Signed-off-by: Yashvardhan Kukreja <[email protected]>
Signed-off-by: Yashvardhan Kukreja <[email protected]>
/hold |
d45b349
to
3843a42
Compare
Signed-off-by: Yashvardhan Kukreja <[email protected]>
3843a42
to
b623348
Compare
Signed-off-by: Yashvardhan Kukreja <[email protected]>
Signed-off-by: Yashvardhan Kukreja <[email protected]>
…rtbeat reporting depends Signed-off-by: Yashvardhan Kukreja <[email protected]>
…without depending on controller-runtime Signed-off-by: Yashvardhan Kukreja <[email protected]>
Signed-off-by: Yashvardhan Kukreja <[email protected]>
05df09d
to
03e33c1
Compare
@yashvardhan-kukreja: The following test failed, say
Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
Implementation details
main.go
runs a central heartbeat reporter loop whose purpose is to periodically report the heartbeat which the addon intends to report. This central heartbeat reporter loop is setup via the following wayreference-addon/cmd/reference-addon-manager/main.go
Lines 98 to 107 in ecfb850
reference-addon/internal/addoninstancesdk/sdk.go
Line 53 in ecfb850
With every iteration of the heartbeat reporter loop, latest heartbeat is reported concurrently
reference-addon/internal/addoninstancesdk/sdk.go
Lines 79 to 111 in ecfb850
ReconcilerWithHeartbeat
is essentially anyReconciler
struct which implements some additional methods which are required for by the heartbeat reporter.reference-addon/internal/addoninstancesdk/sdk.go
Lines 25 to 31 in ecfb850
From the perspective of
ReferenceAddonReconciler
The
ReferenceAddonReconciler
implements theReconcilerWithHeartbeat
by having the following methods:reference-addon/internal/controllers/reference_addon_controller.go
Lines 57 to 74 in ecfb850
And various sections of Reference Addon's codebase can use the
addoninstancesdk.SetAndSendHeartbeat(..., heartbeat)
function to report the heartbeat which is supposed to be reported. For example, if there's a section in the codebase that spots an error which correlates to the addon being unhealthy, then, that section of codebase can useaddoninstancesdk.SetAndSendHeartbeat(r, someUnhealthyHeartbeat)
to do so.For example:
reference-addon/internal/controllers/reference_addon_controller.go
Lines 43 to 52 in ecfb850