fix(umami): temp dir for node cache
All checks were successful
Renovate / renovate (push) Successful in 22s
All checks were successful
Renovate / renovate (push) Successful in 22s
This commit is contained in:
parent
0224df3d7f
commit
493d52ad41
1 changed files with 13 additions and 1 deletions
|
@ -36,6 +36,11 @@ spec:
|
|||
- containerPort: 3000
|
||||
protocol: TCP
|
||||
name: web
|
||||
volumeMounts:
|
||||
- name: next-cache
|
||||
mountPath: /data/.next/cache
|
||||
- name: node-cache
|
||||
mountPath: /home/node/.cache
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
capabilities:
|
||||
|
@ -55,4 +60,11 @@ spec:
|
|||
securityContext:
|
||||
runAsUser: 1000
|
||||
runAsGroup: 1000
|
||||
runAsNonRoot: true
|
||||
runAsNonRoot: true
|
||||
volumes:
|
||||
- name: next-cache
|
||||
emptyDir:
|
||||
sizeLimit: 250Mi
|
||||
- name: node-cache
|
||||
emptyDir:
|
||||
sizeLimit: 1500Mi
|
Loading…
Reference in a new issue