feat: Deploy Firecrawl (spaceship-earth) to fastpass cluster

- 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.
This commit is contained in:
Hermes Agent service account
2026-06-04 16:40:12 -05:00
parent 9d860367cc
commit f4181349f8
18 changed files with 725 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
# ------------------------------------------------------------------------------
# Service: RabbitMQ
# ------------------------------------------------------------------------------
apiVersion: v1
kind: Service
metadata:
name: firecrawl-rabbitmq
namespace: firecrawl
spec:
type: ClusterIP
selector:
app: firecrawl-rabbitmq
ports:
- protocol: TCP
port: 5672
targetPort: 5672
name: amqp
- protocol: TCP
port: 15672
targetPort: 15672
name: management