- Add Firecrawl application with full stack: - Firecrawl API (main service) - Firecrawl Worker (background jobs) - Playwright Service (browser automation) - Redis (cache & job queue) - PostgreSQL (state management) - RabbitMQ (message queue) - Configure dual DNS names: - Primary: spaceship-earth.local.mk-labs.cloud (EPCOT theme) - Secondary: firecrawl.local.mk-labs.cloud - Add Gateway API HTTPRoutes with TLS certificates - Update ReferenceGrant for firecrawl namespace - Configure ArgoCD application (wave 20) - Set USE_DB_AUTHENTICATION=false for internal deployment This provides JARVIS with web scraping and search capabilities.
14 lines
395 B
YAML
14 lines
395 B
YAML
# ------------------------------------------------------------------------------
|
|
# ConfigMap: Playwright configuration
|
|
# ------------------------------------------------------------------------------
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: firecrawl-playwright-config
|
|
namespace: firecrawl
|
|
data:
|
|
PORT: "3000"
|
|
MAX_CONCURRENT_PAGES: "10"
|
|
ALLOW_LOCAL_WEBHOOKS: ""
|
|
BLOCK_MEDIA: ""
|