From 833327c45f5e50f2801874b370f1f29aa24fe612 Mon Sep 17 00:00:00 2001 From: Antigravity Date: Tue, 19 May 2026 23:07:47 -0400 Subject: [PATCH] fix: mount emptyDir to /.cache to fix Prisma permissions --- ai-core/litellm/deployment.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ai-core/litellm/deployment.yaml b/ai-core/litellm/deployment.yaml index 9411e3e..e31b902 100644 --- a/ai-core/litellm/deployment.yaml +++ b/ai-core/litellm/deployment.yaml @@ -75,6 +75,8 @@ spec: - name: config mountPath: /etc/litellm readOnly: true + - name: cache + mountPath: /.cache resources: requests: cpu: 250m @@ -84,10 +86,12 @@ spec: memory: 2Gi securityContext: allowPrivilegeEscalation: false - readOnlyRootFilesystem: false # litellm writes temp files + readOnlyRootFilesystem: false capabilities: drop: ["ALL"] volumes: - name: config configMap: name: litellm-config + - name: cache + emptyDir: {}