From d39ea97128648bb70bbee0a2e1aace5af57a94e3 Mon Sep 17 00:00:00 2001 From: harish-berri Date: Wed, 22 Apr 2026 19:27:07 +0000 Subject: [PATCH] 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 --- deploy/performance/helm/litellm-values.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/deploy/performance/helm/litellm-values.yaml b/deploy/performance/helm/litellm-values.yaml index b053cc92cd3..25401f54fdb 100644 --- a/deploy/performance/helm/litellm-values.yaml +++ b/deploy/performance/helm/litellm-values.yaml @@ -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: