Skip to content

Commit

Permalink
update(deploy/kubernetes): enable gRPC auto threadiness by default
Browse files Browse the repository at this point in the history
As per falcosecurity/falco#1271

Signed-off-by: Leonardo Grasso <me@leonardograsso.com>
  • Loading branch information
leogr authored and poiana committed Jul 17, 2020
1 parent d6b58b5 commit 9bc221a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions deploy/kubernetes/k8s-audit-only/falco.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ http_output:
# grpc:
# enabled: true
# bind_address: "0.0.0.0:5060"
# threadiness: 8
# threadiness: 0
# private_key: "/etc/falco/certs/server.key"
# cert_chain: "/etc/falco/certs/server.crt"
# root_certs: "/etc/falco/certs/ca.crt"
Expand All @@ -191,7 +191,7 @@ http_output:
grpc:
enabled: false
bind_address: "unix:///var/run/falco/falco.sock"
threadiness: 8
threadiness: 0

# gRPC output service.
# By default it is off.
Expand Down
4 changes: 2 additions & 2 deletions deploy/kubernetes/kernel-and-k8s-audit/falco.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ http_output:
# grpc:
# enabled: true
# bind_address: "0.0.0.0:5060"
# threadiness: 8
# threadiness: 0
# private_key: "/etc/falco/certs/server.key"
# cert_chain: "/etc/falco/certs/server.crt"
# root_certs: "/etc/falco/certs/ca.crt"
Expand All @@ -191,7 +191,7 @@ http_output:
grpc:
enabled: false
bind_address: "unix:///var/run/falco/falco.sock"
threadiness: 8
threadiness: 0

# gRPC output service.
# By default it is off.
Expand Down

0 comments on commit 9bc221a

Please sign in to comment.