From 461aa1bc54c2c254850dff2665b6f402b025ad0c Mon Sep 17 00:00:00 2001 From: Hermes Agent service account Date: Thu, 4 Jun 2026 17:05:06 -0500 Subject: [PATCH] fix(firecrawl): correct Docker image registry paths - Changed from ghcr.io/mendableai/* to ghcr.io/firecrawl/* - Updated all three services: main API, playwright-service, and nuq-postgres - Changed tag from v1.0.0 to latest (official images use latest tag) - Fixes ImagePullBackOff errors caused by incorrect registry namespace Per official Firecrawl docker-compose.yaml, images are published under ghcr.io/firecrawl/, not ghcr.io/mendableai/ --- cluster/applications/firecrawl/chart/values.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cluster/applications/firecrawl/chart/values.yaml b/cluster/applications/firecrawl/chart/values.yaml index a8db8fb..8d82b90 100644 --- a/cluster/applications/firecrawl/chart/values.yaml +++ b/cluster/applications/firecrawl/chart/values.yaml @@ -8,13 +8,13 @@ # ------------------------------------------------------------------------------ image: # Main Firecrawl API and Worker image - repository: ghcr.io/mendableai/firecrawl - tag: "v1.0.0" # Pinned version - update explicitly + repository: ghcr.io/firecrawl/firecrawl + tag: "latest" # Using latest as official images don't use v1.0.0 tags pullPolicy: IfNotPresent playwright: - repository: ghcr.io/mendableai/firecrawl/playwright-service - tag: "v1.0.0" # Pinned version - update explicitly + repository: ghcr.io/firecrawl/playwright-service + tag: "latest" # Using latest as official images don't use v1.0.0 tags pullPolicy: IfNotPresent # ------------------------------------------------------------------------------ @@ -72,8 +72,8 @@ playwrightService: # ------------------------------------------------------------------------------ postgres: image: - repository: ghcr.io/mendableai/firecrawl/nuq-postgres - tag: "v1.0.0" # Pinned version + repository: ghcr.io/firecrawl/nuq-postgres + tag: "latest" # Using latest as official images don't use v1.0.0 tags pullPolicy: IfNotPresent replicaCount: 1