Skip to content

Commit

Permalink
add required fields
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Labarussias <[email protected]>
  • Loading branch information
Issif committed Dec 19, 2023
1 parent 555e0f6 commit 5d83b88
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Falco Talon
# Falco Talon

`Falco Talon` is a Response Engine for managing threats in your Kubernetes. It enhances the solutions proposed by Falco community with a no-code dedicated solution. With easy rules, you can react to `events` from [`Falco`](https://falco.org) in milliseconds.

Expand Down Expand Up @@ -66,6 +66,9 @@ Several rules can match same event, so several action can be triggered, except f
* `ignoreDaemonsets`: If true, the pods which belong to a Daemonset are not terminated.
* `ignoreStatefulsets`: If true, the pods which belong to a Statefulset are not terminated.
* `minHealthyReplicas`: Minimum number of healthy pods to allow the termination, can be an absolute or % value (the value must be a quoted string).
* Required fields:
* `k8s.pod.name`
* `k8s.ns.name`

### `kubernetes:labelize`

Expand All @@ -74,13 +77,21 @@ Several rules can match same event, so several action can be triggered, except f
* Before: `false`
* Parameters:
* `labels`: key:value map of labels to add/modify/delete (empty value means label deletion)
* Required fields:
* `k8s.pod.name`
* `k8s.ns.name`

### `kubernetes:networkpolicy`

* Description: **Create, update a network policy to block the egress**
* Continue: `true`
* Before: `true`
* Parameters: N/A
* Required fields:
* `k8s.pod.name`
* `k8s.ns.name`
* `fd.sip` or `fd.rip`
* `fd.sport` or `fd.rport`

### `kubernetes:exec`

Expand All @@ -90,6 +101,9 @@ Several rules can match same event, so several action can be triggered, except f
* Parameters:
* `shell`: SHELL used to run the command (default; `/bin/sh`)
* `command` Command to run
* Required fields:
* `k8s.pod.name`
* `k8s.ns.name`

## Notifiers

Expand Down

0 comments on commit 5d83b88

Please sign in to comment.