# ------------------------------------------------------------------------------ # Deployment: Redis # In-memory cache and job queue for Firecrawl # ------------------------------------------------------------------------------ apiVersion: apps/v1 kind: Deployment metadata: name: firecrawl-redis namespace: firecrawl labels: app: firecrawl-redis spec: replicas: 1 selector: matchLabels: app: firecrawl-redis template: metadata: labels: app: firecrawl-redis spec: containers: - name: redis image: redis:alpine command: ["redis-server", "--bind", "0.0.0.0"] ports: - containerPort: 6379 name: redis resources: requests: memory: "256Mi" cpu: "100m" limits: memory: "512Mi" cpu: "500m"