From 9e9a1d6a4216819630ed1fe07db84bf242c8e95e Mon Sep 17 00:00:00 2001 From: Vijay Chegu <21251550+cheguv@users.noreply.github.com> Date: Fri, 13 Mar 2026 19:27:40 -0700 Subject: [PATCH] fix(helm): default MongoDB image tag to "latest" (fixes #11568) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add image tag for MongoDB configuration in values.yaml Problem Fresh Helm installs fail with ImagePullBackOff because the Bitnami MongoDB sub-chart references a versioned image tag (e.g. 8.0.13-debian-12-r0) that no longer exists on Docker Hub. Bitnami removed all versioned tags from their bitnami/mongodb repository. Fix Set mongodb.image.tag: "latest" in the chart's default values.yaml so installs work out of the box. Risk latest is unpinned — a future Bitnami push could introduce breaking changes. For production, users should pin to a SHA256 digest. A longer-term fix could switch to the official mongo image or pin a stable digest. Related Issues Fixes #11568 Related: #11516, #10587, #10247, #10242 --- helm/librechat/values.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/helm/librechat/values.yaml b/helm/librechat/values.yaml index 1dbacbe89d..24d057e41a 100755 --- a/helm/librechat/values.yaml +++ b/helm/librechat/values.yaml @@ -293,6 +293,8 @@ mongodb: enabled: true auth: enabled: false + image: + tag: "latest" # Bitnami removed versioned tags from Docker Hub (see #11568) databases: - LibreChat # persistence: