fix(helm): default MongoDB image tag to "latest" (fixes #11568)

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
This commit is contained in:
Vijay Chegu 2026-03-13 19:27:40 -07:00 committed by GitHub
parent 3ddf62c8e5
commit 9e9a1d6a42
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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: