Files
krawl.es/kubernetes
Lorenzo Venerandi b253828cd7 Feat/release 1.0.0 (#63)
* Feat: update Kubernetes manifests for Krawl deployment and improve resource labels

* Feat: update version to 1.0.0 in Helm chart and related files; add timezone to README

* Feat: enhance configuration options for handling malicious IPs and update dashboard secret path

* Fix: standardize boolean value handling in environment configuration
2026-01-29 14:32:10 +01:00
..
2026-01-29 14:32:10 +01:00
2026-01-29 11:55:06 +01:00

Kubernetes

Apply all manifests with:

kubectl apply -f https://raw.githubusercontent.com/BlessedRebuS/Krawl/refs/heads/main/kubernetes/krawl-all-in-one-deploy.yaml

Or clone the repo and apply the manifest:

kubectl apply -f kubernetes/krawl-all-in-one-deploy.yaml

Access the deception server:

kubectl get svc krawl-server -n krawl-system

Once the EXTERNAL-IP is assigned, access your deception server at http://<EXTERNAL-IP>:5000

Retrieving Dashboard Path

Check server startup logs or get the secret with

kubectl get secret krawl-server -n krawl-system \
  -o jsonpath='{.data.dashboard-path}' | base64 -d && echo

From Source (Python 3.11+)

Clone the repository:

git clone https://github.com/blessedrebus/krawl.git
cd krawl/src

Run the server:

python3 server.py

Visit http://localhost:5000 and access the dashboard at http://localhost:5000/<dashboard-secret-path>