-
Notifications
You must be signed in to change notification settings - Fork 384
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
Implemented a possibility to disable gops via helm #2961
Conversation
Thanks for the patch following the discussion we had on Slack :)! However, it looks like your commit is not signed-off, to improve tracking of who did what, the Tetragon project uses a "sign-off" procedure which you can learn more about in the Cilium project documentation. Concretely it consists of adding your real name and an email address to your git config and using See more details on how to comply with the "sign-off" procedure
To add your name and email to your git config: git config user.email "[email protected]"
git config user.name "firstname lastname" Note: add the Then you can use for new commits: git commit -s Or for existing commits on which you want to add the git commit --amend -s For more information, see this extract from
|
2174006
to
753a6f7
Compare
Hey, please take a look at the CI output to update your patch and please in the end squash your commits into only one :)! Thanks |
6afb809
to
293db8d
Compare
✅ Deploy Preview for tetragon ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
@@ -175,6 +175,8 @@ tetragon: | |||
# -- The address at which to expose gRPC. Examples: localhost:54321, unix:///var/run/cilum/tetragon/tetragon.sock | |||
address: "localhost:54321" | |||
gops: | |||
# -- Whether to enable exposing gops server. | |||
enabled: false |
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.
It will be user-facing change however, I imagine that the previous situation was making this enabled by default. However I think disabling it by default might be correct indeed!
it looks like e2e test is assuming gops is enabled by default |
Signed-off-by: Oleksandr Kubashov <[email protected]>
293db8d
to
d439e0f
Compare
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 a lot for the work, if you want we could maybe disable that by default, thus we would need small changes in the e2e test framework.
Fixes
Description
Implemented the possibility to disable gops server when installing tetragon via helm
Changelog