Merge pull request #73 from BlessedRebuS/feat/blocklist-api

added parameters on helm chart configmap
This commit is contained in:
Lorenzo Venerandi
2026-02-03 16:01:30 +01:00
committed by GitHub
3 changed files with 6 additions and 2 deletions

View File

@@ -2,8 +2,8 @@ apiVersion: v2
name: krawl-chart name: krawl-chart
description: A Helm chart for Krawl honeypot server description: A Helm chart for Krawl honeypot server
type: application type: application
version: 1.0.2 version: 1.0.3
appVersion: 1.0.2 appVersion: 1.0.3
keywords: keywords:
- honeypot - honeypot
- security - security

View File

@@ -22,6 +22,8 @@ data:
token_tries: {{ .Values.config.canary.token_tries }} token_tries: {{ .Values.config.canary.token_tries }}
dashboard: dashboard:
secret_path: {{ .Values.config.dashboard.secret_path | toYaml }} secret_path: {{ .Values.config.dashboard.secret_path | toYaml }}
exports:
path: {{ .Values.config.exports.path | quote }}
database: database:
path: {{ .Values.config.database.path | quote }} path: {{ .Values.config.database.path | quote }}
retention_days: {{ .Values.config.database.retention_days }} retention_days: {{ .Values.config.database.retention_days }}

View File

@@ -84,6 +84,8 @@ config:
token_tries: 10 token_tries: 10
dashboard: dashboard:
secret_path: null # Auto-generated if not set, or set to "/my-secret-dashboard" secret_path: null # Auto-generated if not set, or set to "/my-secret-dashboard"
exports:
path: "exports"
database: database:
path: "data/krawl.db" path: "data/krawl.db"
retention_days: 30 retention_days: 30