-
Notifications
You must be signed in to change notification settings - Fork 405
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
tetragon/windows: Add default definitions for Windows #3538
tetragon/windows: Add default definitions for Windows #3538
Conversation
✅ Deploy Preview for tetragon ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
b08525e
to
874c458
Compare
Moved over defaults.go to defaults_linux.go Added defaults_windows.go to add set of default paths and names for Windows. Some default definitions are stubbed out for compilation. Signed-off-by: Anadi Anadi <[email protected]>
874c458
to
9ec04bd
Compare
DefaultMapPrefix = "tetragon" | ||
|
||
// DefaultEventMap is the default name of the Event map | ||
DefaultEventMap = "tcpmon" |
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.
perhaps map names can be shared?
|
||
// defaults for the event cache | ||
DefaultEventCacheNumRetries = 15 | ||
DefaultEventCacheRetryDelay = 2 |
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.
same here I'm not sure why these would actually be different?
I'll merge this, I do wonder a bit why Windows would end up with different defaults for some of those things in the comments above. It makes sense unify them later. |
Description
Moved over
defaults.go
todefaults_linux.go
.Added
defaults_windows.go
to add set of default paths and names for Windows.Some default definitions are stubbed out for compilation.
Changelog