apiVersion: apps/v1 kind: Deployment metadata: name: krawl-server namespace: krawl 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 envFrom: - configMapRef: name: krawl-config volumeMounts: - name: wordlists mountPath: /app/wordlists.json subPath: wordlists.json readOnly: true resources: requests: memory: "64Mi" cpu: "100m" limits: memory: "256Mi" cpu: "500m" livenessProbe: httpGet: path: / port: 5000 initialDelaySeconds: 10 periodSeconds: 30 timeoutSeconds: 5 failureThreshold: 3 readinessProbe: httpGet: path: / port: 5000 initialDelaySeconds: 5 periodSeconds: 10 timeoutSeconds: 5 failureThreshold: 3 volumes: - name: wordlists configMap: name: krawl-wordlists