* feat: update analyzer thresholds and add crawl configuration options * feat: update Helm chart version and add README for installation instructions * feat: update installation instructions in README and add Docker support * feat: update deployment manifests and configuration for improved service handling and analyzer settings * feat: add API endpoint for paginated IP retrieval and enhance dashboard visualization with category filters * feat: update configuration for Krawl service to use external config file * feat: refactor code for improved readability and consistency across multiple files * feat: remove Flake8, Pylint, and test steps from PR checks workflow
23 lines
453 B
YAML
23 lines
453 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: krawl-ingress
|
|
namespace: krawl-system
|
|
spec:
|
|
ingressClassName: traefik
|
|
rules:
|
|
- host: krawl.example.com # Change to your domain
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: krawl-server
|
|
port:
|
|
number: 5000
|
|
# tls:
|
|
# - hosts:
|
|
# - krawl.example.com
|
|
# secretName: krawl-tls
|