Skip to content

Commit

Permalink
update(falco): enable gRPC auto threadiness
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 committed Jul 17, 2020
1 parent 3388d72 commit 89d68a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion falco/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ The following table lists the configurable parameters of the Falco chart and the
| `falco.httpOutput.enabled` | Enable http output for security notifications | `false` |
| `falco.httpOutput.url` | Url to notify using the http output when a notification arrives | `http://some.url` |
| `falco.grpc.enabled` | Enable the Falco gRPC server | `false` |
| `falco.grpc.threadiness` | Number of threads (and context) the gRPC server will use | `8` |
| `falco.grpc.threadiness` | Number of threads (and context) the gRPC server will use, `0` by default, which means "auto" | `0` |
| `falco.grpc.unixSocketPath` | Unix socket the gRPC server will create | `unix:///var/run/falco/falco.sock` |
| `falco.grpc.listenPort` | Port where Falco gRPC server listen to connections | `5060` |
| `falco.grpc.privateKey` | Key file path for the Falco gRPC server | `/etc/falco/certs/server.key` |
Expand Down
2 changes: 1 addition & 1 deletion falco/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ falco:
# By modifying the threadiness configuration you can fine-tune the number of threads (and context) it will use.
grpc:
enabled: false
threadiness: 8
threadiness: 0

# gRPC unix socket with no authentication
unixSocketPath: "unix:///var/run/falco/falco.sock"
Expand Down

0 comments on commit 89d68a0

Please sign in to comment.