Skip to content

Commit

Permalink
Fix the type of the setting from list to object
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Labarussias <[email protected]>
  • Loading branch information
Issif committed Apr 5, 2024
1 parent 5eee31f commit 23ad970
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions charts/falcosidekick/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Before release 0.1.20, the helm chart can be found in `falcosidekick` [repositor
## 0.7.17

- Fix the labels for the serviceMonitor
- Fix the type of the setting `config.extra*` from list to object

## 0.7.16

Expand Down
8 changes: 4 additions & 4 deletions charts/falcosidekick/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,8 @@ The following table lists the main configurable parameters of the Falcosidekick
| config.elasticsearch.type | string | `"_doc"` | Elasticsearch document type |
| config.elasticsearch.username | string | `""` | use this username to authenticate to Elasticsearch if the username is not empty |
| config.existingSecret | string | `""` | Existing secret with configuration |
| config.extraArgs | list | `[]` | Extra command-line arguments |
| config.extraEnv | list | `[]` | Extra environment variables |
| config.extraArgs | object | `{}` | Extra command-line arguments |
| config.extraEnv | object | `{}` | Extra environment variables |
| config.fission.checkcert | bool | `true` | check if ssl certificate of the output is valid |
| config.fission.function | string | `""` | Name of Fission function, if not empty, Fission is enabled |
| config.fission.minimumpriority | string | `""` | minimum priority of event to use this output, order is `emergency\|alert\|critical\|error\|warning\|notice\|informational\|debug or ""` |
Expand Down Expand Up @@ -526,8 +526,8 @@ The following table lists the main configurable parameters of the Falcosidekick
| config.zincsearch.minimumpriority | string | `""` | minimum priority of event to use this output, order is `emergency\|alert\|critical\|error\|warning\|notice\|informational\|debug or ""` |
| config.zincsearch.password | string | `""` | use this password to authenticate to ZincSearch |
| config.zincsearch.username | string | `""` | use this username to authenticate to ZincSearch |
| extraVolumeMounts | list | `[]` | Extra volume mounts for sidekick deployment |
| extraVolumes | list | `[]` | Extra volumes for sidekick deployment |
| extraVolumeMounts | object | `{}` | Extra volume mounts for sidekick deployment |
| extraVolumes | object | `{}` | Extra volumes for sidekick deployment |
| fullnameOverride | string | `""` | Override the name |
| image | object | `{"pullPolicy":"IfNotPresent","registry":"docker.io","repository":"falcosecurity/falcosidekick","tag":"2.28.0"}` | number of old history to retain to allow rollback (If not set, default Kubernetes value is set to 10) revisionHistoryLimit: 1 |
| image.pullPolicy | string | `"IfNotPresent"` | The image pull policy |
Expand Down
8 changes: 4 additions & 4 deletions charts/falcosidekick/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ config:
# -- Existing secret with configuration
existingSecret: ""
# -- Extra environment variables
extraEnv: []
extraEnv: {}
# -- Extra command-line arguments
extraArgs: []
extraArgs: {}
# -- DEBUG environment variable
debug: false
# -- a list of escaped comma separated custom fields to add to falco events, syntax is "key:value\,key:value"
Expand Down Expand Up @@ -981,7 +981,7 @@ tolerations: []
affinity: {}

# -- Extra volumes for sidekick deployment
extraVolumes: []
extraVolumes: {}
# - name: optional-mtls-volume
# configMap:
# name: falco-certs-optional
Expand All @@ -991,7 +991,7 @@ extraVolumes: []
# path: mtlscert.optional.tls

# -- Extra volume mounts for sidekick deployment
extraVolumeMounts: []
extraVolumeMounts: {}
# - mountPath: /etc/certs/mtlscert.optional.tls
# name: optional-mtls-volume

Expand Down

0 comments on commit 23ad970

Please sign in to comment.