From c96b4a4ab98bcb114398398504a03da8e75758bd Mon Sep 17 00:00:00 2001 From: Stefan Reimer Date: Tue, 6 Feb 2024 15:54:02 +0000 Subject: [PATCH] ClamAV Version bump. Enabled verbose by default --- charts/clamav/Chart.yaml | 2 +- charts/clamav/README.md | 4 ++-- charts/clamav/templates/configmap.yaml | 2 +- charts/clamav/values.yaml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/clamav/Chart.yaml b/charts/clamav/Chart.yaml index 86badeb..dae684b 100644 --- a/charts/clamav/Chart.yaml +++ b/charts/clamav/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: clamav description: Chart for deploying a ClamAVd on Kubernetes as statfulSet type: application -version: "0.3.0" +version: "0.3.1" appVersion: "1.2.1" home: https://kubezero.com icon: https://cdn.zero-downtime.net/assets/kubezero/logo-small-64.png diff --git a/charts/clamav/README.md b/charts/clamav/README.md index 6dd9f96..b95fdec 100644 --- a/charts/clamav/README.md +++ b/charts/clamav/README.md @@ -1,6 +1,6 @@ # clamav -![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.2.1](https://img.shields.io/badge/AppVersion-1.2.1-informational?style=flat-square) +![Version: 0.3.1](https://img.shields.io/badge/Version-0.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.2.1](https://img.shields.io/badge/AppVersion-1.2.1-informational?style=flat-square) Chart for deploying a ClamAVd on Kubernetes as statfulSet @@ -28,7 +28,7 @@ Kubernetes: `>= 1.26.0` | fullnameOverride | string | `""` | override the full name of the clamav chart | | image | object | `{"repository":"clamav/clamav","type":"base"}` | The clamav docker image | | limits.connectionQueueLength | int | `100` | Maximum length the queue of pending connections may grow to | -| limits.fileSize | int | `20` | The largest file size scanable by clamav, in MB | +| limits.fileSize | int | `25` | The largest file size scanable by clamav, in MB | | limits.maxThreads | int | `4` | Maximum number of threads running at the same time. | | limits.scanSize | int | `100` | The largest scan size permitted in clamav, in MB | | limits.sendBufTimeout | int | `500` | | diff --git a/charts/clamav/templates/configmap.yaml b/charts/clamav/templates/configmap.yaml index 3df2d07..364d097 100644 --- a/charts/clamav/templates/configmap.yaml +++ b/charts/clamav/templates/configmap.yaml @@ -10,7 +10,7 @@ data: LogTime yes LogClean yes LogSyslog no - LogVerbose no + LogVerbose yes LogFileMaxSize 0 LogFile /dev/stdout DatabaseDirectory /var/lib/clamav diff --git a/charts/clamav/values.yaml b/charts/clamav/values.yaml index 531040e..3cbfb35 100644 --- a/charts/clamav/values.yaml +++ b/charts/clamav/values.yaml @@ -17,7 +17,7 @@ freshclam: mirrors: database.clamav.net limits: # limits.fileSize -- The largest file size scanable by clamav, in MB - fileSize: 20 + fileSize: 25 # limits.scanSize -- The largest scan size permitted in clamav, in MB scanSize: 100 # limits.connectionQueueLength -- Maximum length the queue of pending connections may grow to