Files
krawl.es/kubernetes/manifests/deployment.yaml

57 lines
1.3 KiB
YAML
Raw Normal View History

2025-12-14 19:08:01 +01:00
apiVersion: apps/v1
kind: Deployment
metadata:
name: krawl-server
namespace: krawl-system
labels:
app: krawl-server
spec:
replicas: 1
selector:
matchLabels:
app: krawl-server
template:
metadata:
labels:
app: krawl-server
spec:
containers:
- name: krawl
image: ghcr.io/blessedrebus/krawl:latest
imagePullPolicy: Always
ports:
- containerPort: 5000
name: http
protocol: TCP
env:
- name: CONFIG_LOCATION
value: "config.yaml"
2025-12-14 19:08:01 +01:00
volumeMounts:
- name: config
mountPath: /app/config.yaml
subPath: config.yaml
readOnly: true
2025-12-14 19:08:01 +01:00
- name: wordlists
mountPath: /app/wordlists.json
subPath: wordlists.json
readOnly: true
- name: database
mountPath: /app/data
2025-12-14 19:08:01 +01:00
resources:
requests:
memory: "64Mi"
cpu: "100m"
limits:
memory: "256Mi"
cpu: "500m"
volumes:
- name: config
configMap:
name: krawl-config
2025-12-14 19:08:01 +01:00
- name: wordlists
configMap:
name: krawl-wordlists
- name: database
persistentVolumeClaim:
claimName: krawl-db