From 2fbea80156e4ed0cb5a3bf74b41aa8afe0d32c10 Mon Sep 17 00:00:00 2001 From: Lorenzo Venerandi Date: Sun, 1 Mar 2026 17:48:28 +0100 Subject: [PATCH] feat: Add backup and export configurations to the Krawl config map --- kubernetes/krawl-all-in-one-deploy.yaml | 8 ++++++++ kubernetes/manifests/configmap.yaml | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/kubernetes/krawl-all-in-one-deploy.yaml b/kubernetes/krawl-all-in-one-deploy.yaml index 99e30fc..38e9c9b 100644 --- a/kubernetes/krawl-all-in-one-deploy.yaml +++ b/kubernetes/krawl-all-in-one-deploy.yaml @@ -68,6 +68,14 @@ data: token_tries: 10 dashboard: secret_path: null + backups: + path: "backups" + cron: "*/30 * * * *" + enabled: false + exports: + path: "exports" + logging: + level: "INFO" database: path: "data/krawl.db" retention_days: 30 diff --git a/kubernetes/manifests/configmap.yaml b/kubernetes/manifests/configmap.yaml index cdf6f1b..7782c9a 100644 --- a/kubernetes/manifests/configmap.yaml +++ b/kubernetes/manifests/configmap.yaml @@ -26,6 +26,14 @@ data: token_tries: 10 dashboard: secret_path: null + backups: + path: "backups" + cron: "*/30 * * * *" + enabled: false + exports: + path: "exports" + logging: + level: "INFO" database: path: "data/krawl.db" retention_days: 30