mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 03:32:22 +08:00
d68f349109
Refactored container configurations in worker, api, and playwright-service YAMLs to streamline syntax and add missing fields. Added a service definition for the worker component and included a new environment variable in the configmap for rate-limiting. These changes enhance configuration clarity and ensure proper resource definitions.
14 lines
341 B
YAML
14 lines
341 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: firecrawl-config
|
|
data:
|
|
NUM_WORKERS_PER_QUEUE: "8"
|
|
PORT: "3002"
|
|
HOST: "0.0.0.0"
|
|
REDIS_URL: "redis://redis:6379"
|
|
REDIS_RATE_LIMIT_URL: "redis://redis:6379"
|
|
PLAYWRIGHT_MICROSERVICE_URL: "http://playwright-service:3000/html"
|
|
USE_DB_AUTHENTICATION: "false"
|
|
HDX_NODE_BETA_MODE: "1"
|