-
Notifications
You must be signed in to change notification settings - Fork 212
api: add PreferredAllocator interface #535
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
Conversation
Codecov Report
@@ Coverage Diff @@
## master #535 +/- ##
==========================================
- Coverage 57.00% 56.93% -0.07%
==========================================
Files 31 31
Lines 2114 2120 +6
==========================================
+ Hits 1205 1207 +2
- Misses 839 841 +2
- Partials 70 72 +2
Continue to review full report at Codecov.
|
rojkov
left a comment
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.
Overall looks good. With a couple of minor changes would be perfect.
pkg/deviceplugin/server.go
Outdated
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.
These closure declarations have become too lengthy. Let's declare new functional types postAllocateFunc, preStartContainerFunc and getPreferredAllocationFunc in this file and use them instead of func(...).
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.
see c87b0b5
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.
could you use the functional types in this file too?
pkg/deviceplugin/server.go
Outdated
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.
could you use the functional types in this file too?
pkg/deviceplugin/manager.go
Outdated
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'd prefer to rename preferredAllocationFunc to getPreferredAllocationFunc for consistency.
Also all the other variables, parameters and struct fields preferredAllocation should be better renamed to become a verb to signal they contain a func, that is to getPreferedAllocation.
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 would not have preferred to prefix every preferred with get since not even the pluginapi gets it everywhere, but I get it, preferred or not.
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 agree. The interface name doesn't need to be prefixed indeed. Could you please revert it?
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 would prefer I got the gets before preferred preferably right now
This adds a PreferredAllocator interface so that plugins can optionally implement the API. Signed-off-by: Ukri Niemimuukko <[email protected]>
rojkov
left a comment
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.
Thanks!
bart0sh
left a comment
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
This adds a GetPreferredAllocator interface so that plugins can
optionally implement the API.
Signed-off-by: Ukri Niemimuukko [email protected]