fix(nocodb): mount emptyDir at /tmp
All checks were successful
Renovate / renovate (push) Successful in 1m5s

This commit is contained in:
Peter 2024-06-26 08:15:10 +02:00
parent ea36bc6d4a
commit cb39b80946
Signed by: prskr
GPG key ID: F56BED6903BC5E37

View file

@ -27,8 +27,10 @@ spec:
protocol: TCP
name: web
volumeMounts:
- mountPath: /usr/app/data
name: nocodb-metadata
- name: nocodb-metadata
mountPath: /usr/app/data
- name: tmp
mountPath: /tmp
livenessProbe:
httpGet:
path: /api/v1/health
@ -76,6 +78,9 @@ spec:
- name: nocodb-metadata
persistentVolumeClaim:
claimName: nocodb-metadata
- name: tmp
emptyDir:
sizeLimit: 50Mi
securityContext:
runAsUser: 1000
runAsGroup: 1000