fix(nocodb): mount emptyDir at /tmp
All checks were successful
Renovate / renovate (push) Successful in 1m5s
All checks were successful
Renovate / renovate (push) Successful in 1m5s
This commit is contained in:
parent
ea36bc6d4a
commit
cb39b80946
1 changed files with 51 additions and 46 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue