-
Notifications
You must be signed in to change notification settings - Fork 184
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
chore: hostNetwork supports sharding #8517
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## release-0.9 #8517 +/- ##
===============================================
+ Coverage 64.84% 64.93% +0.08%
===============================================
Files 358 358
Lines 45523 45514 -9
===============================================
+ Hits 29521 29555 +34
+ Misses 13374 13334 -40
+ Partials 2628 2625 -3
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
pkg/controller/component/utils.go
Outdated
return slices.Index(strings.Split(comps, ","), compName) >= 0 | ||
|
||
compsList := strings.Split(comps, ",") | ||
return slices.Contains(compsList, synthesizedComp.Name) || slices.Contains(compsList, synthesizedComp.ShardingName) |
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.
Refactor the conversion (from sharding to components) to be handled by the cluster controller, rather than embedding its into components.
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.
Refactor the conversion (from sharding to components) to be handled by the cluster controller, rather than embedding its into components.
done
No description provided.