Skip to content

Commit

Permalink
allow to disable the gRPC server
Browse files Browse the repository at this point in the history
Currently, there is no way to disable the gRPC server. this commit
checks if the provided address is empty and, if so, does not start the
server. It also updates the helm configmap template so that if gRPC is
disabled, then an empty address is passed to the agent.

Signed-off-by: Kornilios Kourtis <[email protected]>
  • Loading branch information
kkourt committed Aug 20, 2024
1 parent bcf9429 commit 786d9b5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions cmd/tetragon/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -767,6 +767,10 @@ func startExporter(ctx context.Context, server *server.Server) error {
}

func Serve(ctx context.Context, listenAddr string, srv *server.Server) error {
// we use an empty listen address to effectively disable the gRPC server
if len(listenAddr) == 0 {
return nil
}
grpcServer := grpc.NewServer()
tetragon.RegisterFineGuidanceSensorsServer(grpcServer, srv)
proto, addr, err := server.SplitListenAddr(listenAddr)
Expand Down
2 changes: 1 addition & 1 deletion docs/data/tetragon_flags.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ data:
{{- if .Values.tetragon.grpc.enabled }}
server-address: {{ .Values.tetragon.grpc.address }}
{{- else }}
server-address: ""
{{- end }}
{{- if .Values.tetragon.healthGrpc.enabled }}
health-server-address: :{{ .Values.tetragon.healthGrpc.port }}
Expand Down
2 changes: 1 addition & 1 deletion pkg/option/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ func AddFlags(flags *pflag.FlagSet) {
flags.Bool(KeyEnableProcessAncestors, true, "Include ancestors in process exec events")
flags.String(KeyMetricsServer, "", "Metrics server address (e.g. ':2112'). Disabled by default")
flags.String(KeyMetricsLabelFilter, "namespace,workload,pod,binary", "Comma-separated list of enabled metrics labels. Unknown labels will be ignored.")
flags.String(KeyServerAddress, "localhost:54321", "gRPC server address (e.g. 'localhost:54321' or 'unix:///var/run/tetragon/tetragon.sock'")
flags.String(KeyServerAddress, "localhost:54321", "gRPC server address (e.g. 'localhost:54321' or 'unix:///var/run/tetragon/tetragon.sock'). An empty address disables the gRPC server")
flags.String(KeyGopsAddr, "", "gops server address (e.g. 'localhost:8118'). Disabled by default")
flags.Bool(KeyEnableProcessCred, false, "Enable process_cred events")
flags.Bool(KeyEnableProcessNs, false, "Enable namespace information in process_exec and process_kprobe events")
Expand Down

0 comments on commit 786d9b5

Please sign in to comment.