fix: mount emptyDir to /.cache to fix Prisma permissions

This commit is contained in:
Antigravity 2026-05-19 23:07:47 -04:00
parent 17c9e8b74b
commit 833327c45f
1 changed files with 5 additions and 1 deletions

View File

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