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
|
protocol: TCP
|
||||||
name: web
|
name: web
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- mountPath: /usr/app/data
|
- name: nocodb-metadata
|
||||||
name: nocodb-metadata
|
mountPath: /usr/app/data
|
||||||
|
- name: tmp
|
||||||
|
mountPath: /tmp
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /api/v1/health
|
path: /api/v1/health
|
||||||
|
@ -76,6 +78,9 @@ spec:
|
||||||
- name: nocodb-metadata
|
- name: nocodb-metadata
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: nocodb-metadata
|
claimName: nocodb-metadata
|
||||||
|
- name: tmp
|
||||||
|
emptyDir:
|
||||||
|
sizeLimit: 50Mi
|
||||||
securityContext:
|
securityContext:
|
||||||
runAsUser: 1000
|
runAsUser: 1000
|
||||||
runAsGroup: 1000
|
runAsGroup: 1000
|
||||||
|
|
Loading…
Reference in a new issue