mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-04-07 00:15:23 +02:00
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:
parent
3ddf62c8e5
commit
9e9a1d6a42
1 changed files with 2 additions and 0 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue