diff --git a/config.yaml b/config.yaml index 9d736e5..dd61720 100644 --- a/config.yaml +++ b/config.yaml @@ -33,6 +33,9 @@ backups: exports: path: "exports" +logging: + level: "DEBUG" # DEBUG, INFO, WARNING, ERROR, CRITICAL + database: path: "data/krawl.db" retention_days: 30 diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 26ce1ef..15ffe7c 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: krawl-chart description: A Helm chart for Krawl honeypot server type: application -version: 1.0.9 -appVersion: 1.0.9 +version: 1.0.10 +appVersion: 1.0.10 keywords: - honeypot - security diff --git a/helm/templates/configmap.yaml b/helm/templates/configmap.yaml index ed38d8d..73ffbb5 100644 --- a/helm/templates/configmap.yaml +++ b/helm/templates/configmap.yaml @@ -28,6 +28,8 @@ data: enabled: {{ .Values.config.backups.enabled }} exports: path: {{ .Values.config.exports.path | quote }} + logging: + level: {{ .Values.config.logging.level | quote }} database: path: {{ .Values.config.database.path | quote }} retention_days: {{ .Values.config.database.retention_days }} diff --git a/helm/values.yaml b/helm/values.yaml index 20e7b3f..df4df23 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -86,10 +86,12 @@ config: secret_path: null # Auto-generated if not set, or set to "/my-secret-dashboard" backups: path: "backups" - enabled: true + enabled: false cron: "*/30 * * * *" exports: path: "exports" + logging: + level: "INFO" # DEBUG, INFO, WARNING, ERROR, CRITICAL database: path: "data/krawl.db" retention_days: 30