diff --git a/charts/registry-scanner/README.md b/charts/registry-scanner/README.md index cef18024d..0d24929e7 100644 --- a/charts/registry-scanner/README.md +++ b/charts/registry-scanner/README.md @@ -55,6 +55,7 @@ The following table lists the configurable parameters of the Sysdig Registry Sca | cronjob.failedJobsHistoryLimit | The number of failed job history to keep on the cluster. | 5 | | cronjob.successfulJobsHistoryLimit | The number of successful job history to keep on the cluster. | 2 | | cronjob.restartPolicy | The restart policy for a failed registry scan execution. | Never | +| cronjob.timeZone | Timezone settings for the cronjob. Value default will be null to guarantee we only set the timezone if the user provides it. | "" | | reportToPersistentVolumeClaim | Specify a volume claim to write the final JSON report there instead of standard output. | "" | | config.logging | The log level. Use one of the following: trace, debug, info, error. | "info" | | config.registryURL | The URL of the registry to scan. | "" | @@ -127,7 +128,7 @@ Use the following command to deploy: helm upgrade --install registry-scanner \ --namespace sysdig-agent \ --create-namespace \ - --version=1.1.19 \ + --version=1.1.20 \ --set config.secureBaseURL= \ --set config.secureAPIToken= \ --set config.secureSkipTLS=true \ diff --git a/charts/registry-scanner/values.yaml b/charts/registry-scanner/values.yaml index efc5ecbc0..ee7a20fca 100644 --- a/charts/registry-scanner/values.yaml +++ b/charts/registry-scanner/values.yaml @@ -11,6 +11,8 @@ cronjob: successfulJobsHistoryLimit: 2 # The restart policy for a failed registry scan execution. restartPolicy: Never + # Timezone settings for the cronjob. Value default will be null to guarantee we only set the timezone if the user provides it. + timeZone: "" # Specify a volume claim to write the final JSON report there instead of standard output. reportToPersistentVolumeClaim: ""