mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-13 23:11:40 +00:00
fix(perf): set gp2 storageClass for Bitnami Postgres and Redis on EKS
PVCs were Pending with no storageClass; bind to cluster gp2 so volumes provision and StatefulSets can schedule. Made-with: Cursor
This commit is contained in:
parent
c5fdb9cc3e
commit
d39ea97128
1 changed files with 11 additions and 0 deletions
|
|
@ -64,9 +64,20 @@ db:
|
|||
deployStandalone: true
|
||||
useExisting: false
|
||||
|
||||
# Bitnami subcharts: set StorageClass so PVCs provision on EKS (e.g. gp2 in-tree or gp3 via CSI).
|
||||
# Without this, claims stay Pending with an empty STORAGECLASS. If you already have Pending PVCs,
|
||||
# delete them after syncing so StatefulSets recreate claims (wiping local DB/Redis data).
|
||||
postgresql:
|
||||
primary:
|
||||
persistence:
|
||||
storageClass: gp2
|
||||
|
||||
redis:
|
||||
enabled: true
|
||||
architecture: standalone
|
||||
master:
|
||||
persistence:
|
||||
storageClass: gp2
|
||||
|
||||
migrationJob:
|
||||
hooks:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue