- 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.
52 lines
1.4 KiB
YAML
52 lines
1.4 KiB
YAML
# ------------------------------------------------------------------------------
|
|
# Deployment: RabbitMQ
|
|
# Message queue for Firecrawl distributed task processing
|
|
# ------------------------------------------------------------------------------
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: firecrawl-rabbitmq
|
|
namespace: firecrawl
|
|
labels:
|
|
app: firecrawl-rabbitmq
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: firecrawl-rabbitmq
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: firecrawl-rabbitmq
|
|
spec:
|
|
containers:
|
|
- name: rabbitmq
|
|
image: rabbitmq:3-management
|
|
command: ["rabbitmq-server"]
|
|
ports:
|
|
- containerPort: 5672
|
|
name: amqp
|
|
- containerPort: 15672
|
|
name: management
|
|
resources:
|
|
requests:
|
|
memory: "512Mi"
|
|
cpu: "250m"
|
|
limits:
|
|
memory: "1Gi"
|
|
cpu: "500m"
|
|
livenessProbe:
|
|
exec:
|
|
command: ["rabbitmq-diagnostics", "-q", "check_running"]
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 5
|
|
timeoutSeconds: 5
|
|
failureThreshold: 3
|
|
readinessProbe:
|
|
exec:
|
|
command: ["rabbitmq-diagnostics", "-q", "check_running"]
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 5
|
|
timeoutSeconds: 5
|
|
failureThreshold: 3
|