# ------------------------------------------------------------------------------ # Deployment: Playwright Service # Browser automation service for web scraping # ------------------------------------------------------------------------------ apiVersion: apps/v1 kind: Deployment metadata: name: firecrawl-playwright namespace: firecrawl labels: app: firecrawl-playwright spec: replicas: 1 selector: matchLabels: app: firecrawl-playwright template: metadata: labels: app: firecrawl-playwright spec: containers: - name: playwright image: ghcr.io/mendableai/firecrawl/playwright-service:latest envFrom: - configMapRef: name: firecrawl-playwright-config ports: - containerPort: 3000 name: http resources: requests: memory: "2Gi" cpu: "1000m" limits: memory: "4Gi" cpu: "2000m" volumeMounts: - name: cache mountPath: /tmp/.cache volumes: - name: cache emptyDir: sizeLimit: 1Gi