-
Notifications
You must be signed in to change notification settings - Fork 5
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
Network neighborhoods, fix DNS & network tracers enrichment, container watcher bug #273
Conversation
Signed-off-by: Amir Malka <[email protected]>
Signed-off-by: Amir Malka <[email protected]>
PR Description updated to latest commit (b7eb8a4) |
PR Review
✨ Review tool usage guide:Overview: The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on any PR.
See the review usage page for a comprehensive guide on using this tool. |
PR Code Suggestions
✨ Improve tool usage guide:Overview:
See the improve usage page for a comprehensive guide on using this tool. |
✨ Artifacts are available here. |
6 similar comments
✨ Artifacts are available here. |
✨ Artifacts are available here. |
✨ Artifacts are available here. |
✨ Artifacts are available here. |
✨ Artifacts are available here. |
✨ Artifacts are available here. |
Signed-off-by: Amir Malka <[email protected]>
✨ Artifacts are available here. |
6 similar comments
✨ Artifacts are available here. |
✨ Artifacts are available here. |
✨ Artifacts are available here. |
✨ Artifacts are available here. |
✨ Artifacts are available here. |
✨ Artifacts are available here. |
Summary:
|
✨ Artifacts are available here. |
Signed-off-by: Amir Malka <[email protected]>
✨ Artifacts are available here. |
1 similar comment
✨ Artifacts are available here. |
Summary:
|
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'm leaving all the logs you added for now, I believe we will clean them later :)
Signed-off-by: Amir Malka <[email protected]>
@dwertent yes, not ready for review.. I added lots of logs for the debugging purposes |
Signed-off-by: Amir Malka <[email protected]>
Signed-off-by: Amir Malka <[email protected]>
✨ Artifacts are available here. |
Summary:
|
Signed-off-by: Amir Malka <[email protected]>
Summary:
|
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.
much more understandable with the unique list of pods
User description
Overview
Type
enhancement, bug_fix
Description
NetworkNeighbors
toNetworkNeighborhood
across various modules.NetworkNeighborhoodCache
with full functionality including unit tests.NetworkNeighborhood
structure.NetworkNeighborsCache
implementation.Changes walkthrough
8 files
main.go
Update Network Management and Caching Implementations
main.go
networkmanagerv2
andnetworkneighborhoodcache
replacingnetworkneighborscache
.NewNetworkNeighborhoodCache
instead of
NewNetworkNeighborsCache
.networkmanagerv2
.networkneighborhoodcache.go
Implement NetworkNeighborhoodCache with Full Functionality
pkg/objectcache/networkneighborhoodcache/networkneighborhoodcache.go
NetworkNeighborhoodCache
with methods for managingnetwork neighborhood data.
networkneighborhoodcache_interface.go
Define NetworkNeighborhoodCache Interface
pkg/objectcache/networkneighborhoodcache_interface.go
NetworkNeighborhoodCache
interface with a method forretrieving network neighborhood data.
networkneighborscache.go
Remove Old NetworkNeighborsCache Implementation
pkg/objectcache/networkneighborscache/networkneighborscache.go
NetworkNeighborsCache
implementation.objectcache.go
Update ObjectCache to Use NetworkNeighborhoodCache
pkg/objectcache/v1/objectcache.go
ObjectCacheImpl
to useNetworkNeighborhoodCache
instead ofNetworkNeighborsCache
.helpers.go
Add Helper for NetworkNeighborhood Container Data Retrieval
pkg/ruleengine/v1/helpers.go
NetworkNeighborhood
object.r0005_unexpected_domain_request.go
Update Domain Request Rule to Use NetworkNeighborhood
pkg/ruleengine/v1/r0005_unexpected_domain_request.go
NetworkNeighborhood
instead ofNetworkNeighbors
.r0007_kubernetes_client_executed.go
Adjust Network Event Handling for Kubernetes Client Execution Rule
pkg/ruleengine/v1/r0007_kubernetes_client_executed.go
NetworkNeighborhood
.2 files
readfiles.go
Update Mocks for NetworkNeighborhood Transition
mocks/readfiles.go
from
NetworkNeighbors
toNetworkNeighborhood
.networkneighborhoodcache_test.go
Unit Tests for NetworkNeighborhoodCache
pkg/objectcache/networkneighborhoodcache/networkneighborhoodcache_test.go
NetworkNeighborhoodCache
covering variousscenarios.