kubewarden / helm-charts

Helm charts for the Kubewarden project
Apache License 2.0
25 stars 16 forks source link

fix: invalid audit scanner container command. #392

Closed jvanz closed 5 months ago

jvanz commented 5 months ago

Description

The container command is an array of strings. The --disable-store flag value passed is false which fails. Because it is unmarshaled as boolean. To fix that, the helper code to build the command must quote the boolean value

The memory resource configuration for the audit scanner is wrong. The limit is less then the requested amount. This commit fixed that by inverting the quantities.

Fix #390