Skip to content

Commit

Permalink
feat(node-red): Updates values and secrets for Node Red
Browse files Browse the repository at this point in the history
In prevision of sidekick version bump.
falcosecurity/falcosidekick#337

Signed-off-by: Lyonel Martinez <[email protected]>
  • Loading branch information
Lowaiz committed Jul 26, 2022
1 parent 423a626 commit eada56f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions falcosidekick/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Before release 0.1.20, the helm chart can be found in `falcosidekick` [repositor
as a list of comma separated labels and annotations to add to the AlertManager trigger.
* Add `smtp.autmechanism` and associated fields to be able to use any SASL mechanism.
* Add `yandex.datastreams` and associated fields.
* Add `nodered` and associated fields.

## 0.5.6

Expand Down
6 changes: 6 additions & 0 deletions falcosidekick/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,12 @@ The following table lists the main configurable parameters of the Falcosidekick
| `config.nats.hostport` | NATS "nats://host:port", if not `empty`, NATS is *enabled* | `""` |
| `config.nats.minimumpriority` | minimum priority of event for using use this output, order is `emergency\|alert\|critical\|error\|warning\|notice\|informational\|debug or ""` | `debug` |
| `config.nats.mutualtls` | if true, checkcert flag will be ignored (server cert will always be checked) | `false` |
| `config.nodered.address` | Webhook address, if not empty, Webhook output is enabled | `""` |
| `config.nodered.user` | User if Basic Auth is enabled for 'http in' node in Node-RED | `""` |
| `config.nodered.password` | Password if Basic Auth is enabled for 'http in' node in Node-RED | `""` |
| `config.nodered.customheaders` | Custom headers to add in POST, useful for Authentication | list of comma separated headers to, syntax is "key:value,key:value" | `""` |
| `config.nodered.checkcert` | check if ssl certificate of the output is valid | `true` |
| `config.nodered.minimumpriority` | minimum priority of event for using use this output, order is `emergency\|alert\|critical\|error\|warning\|notice\|informational\|debug or ""` | `""` |
| `config.openfaas.checkcert` | check if ssl certificate of the output is valid | `true` | | `openfaas`
| `config.openfaas.functionname` | Name of OpenFaaS function, if not empty, OpenFaaS is *enabled* | `""` |
| `config.openfaas.functionnamespace` | Namespace of OpenFaaS function, "openfaas-fn" (default) | `openfaas-fn` |
Expand Down
8 changes: 8 additions & 0 deletions falcosidekick/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,14 @@ config:
mutualtls: false
checkcert: true

nodered:
address: "" # Webhook address, if not empty, Webhook output is enabled
user: "" # User if Basic Auth is enabled for 'http in' node in Node-RED
password: "" # Password if Basic Auth is enabled for 'http in' node in Node-RED
customHeaders: "" # Custom headers to add in POST, useful for Authentication | list of comma separated headers to, syntax is "key:value,key:value"
minimumpriority: "" # minimum priority of event for using this output, order is emergency|alert|critical|error|warning|notice|informational|debug or "" (default)
checkcert: true # check if ssl certificate of the output is valid (default: true)

azure:
subscriptionID: ""
resourceGroupName: ""
Expand Down

0 comments on commit eada56f

Please sign in to comment.