diff --git a/falcosidekick/CHANGELOG.md b/falcosidekick/CHANGELOG.md index 73e24270d..dbd35102e 100644 --- a/falcosidekick/CHANGELOG.md +++ b/falcosidekick/CHANGELOG.md @@ -5,6 +5,12 @@ numbering uses [semantic versioning](http://semver.org). Before release 0.1.20, the helm chart can be found in `falcosidekick` [repository](https://github.com/falcosecurity/falcosidekick/tree/master/deploy/helm/falcosidekick). +## 0.3.1 + +### Fixes + +* Fix for `s3.bucket`, it should be empty + ## 0.3.0 ### Major Changes diff --git a/falcosidekick/Chart.yaml b/falcosidekick/Chart.yaml index 6fbc33fd8..88ec3c008 100644 --- a/falcosidekick/Chart.yaml +++ b/falcosidekick/Chart.yaml @@ -3,7 +3,7 @@ appVersion: 2.21.0 description: A simple daemon to help you with falco's outputs icon: https://raw.githubusercontent.com/falcosecurity/falcosidekick/master/imgs/falcosidekick_color.png name: falcosidekick -version: 0.3.0 +version: 0.3.1 keywords: - monitoring - security diff --git a/falcosidekick/README.md b/falcosidekick/README.md index 84fc4768b..a4aff65d5 100644 --- a/falcosidekick/README.md +++ b/falcosidekick/README.md @@ -172,7 +172,7 @@ The following table lists the main configurable parameters of the Falcosidekick | `config.aws.sns.minimumpriority` | minimum priority of event for using use this output, order is `emergency|alert|critical|error|warning|notice|informational|debug or ""` | `debug` | | `config.aws.sqs.url` | AWS SQS Queue URL, if not empty, AWS SQS output is enabled | | | `config.aws.sqs.minimumpriority` | minimum priority of event for using use this output, order is `emergency|alert|critical|error|warning|notice|informational|debug or ""` | `debug` | -| `config.aws.s3.bucket` | AWS S3, bucket name | `falcosidekick` | +| `config.aws.s3.bucket` | AWS S3, bucket name | | | `config.aws.s3.prefix` | AWS S3, name of prefix, keys will have format: s3:////YYYY-MM-DD/YYYY-MM-DDTHH:mm:ss.s+01:00.json | | | `config.aws.s3.minimumpriority` | minimum priority of event for using use this output, order is `emergency|alert|critical|error|warning|notice|informational|debug or ""` | `debug` | `config.smtp.hostport` | "host:port" address of SMTP server, if not empty, SMTP output is enabled | | diff --git a/falcosidekick/values.yaml b/falcosidekick/values.yaml index 4bf1ed9dc..18c236480 100644 --- a/falcosidekick/values.yaml +++ b/falcosidekick/values.yaml @@ -123,7 +123,7 @@ config: url: "" minimumpriority: "" s3: - bucket: "falcosidekick" + bucket: "" prefix: "" minimumpriority: ""