diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 6e37702..9e17d9e 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.2 -appVersion: 1.0.2 +version: 1.0.3 +appVersion: 1.0.3 keywords: - honeypot - security diff --git a/helm/templates/configmap.yaml b/helm/templates/configmap.yaml index f81d319..4d503ab 100644 --- a/helm/templates/configmap.yaml +++ b/helm/templates/configmap.yaml @@ -22,6 +22,8 @@ data: token_tries: {{ .Values.config.canary.token_tries }} dashboard: secret_path: {{ .Values.config.dashboard.secret_path | toYaml }} + exports: + path: {{ .Values.config.exports.path | 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 fb9be82..b9fd375 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -84,6 +84,8 @@ config: token_tries: 10 dashboard: secret_path: null # Auto-generated if not set, or set to "/my-secret-dashboard" + exports: + path: "exports" database: path: "data/krawl.db" retention_days: 30