feat: add configurable shmSizeLimit for /dev/shm in jupyterlab chart

Introduce shmSizeLimit value (default 512Mi) to control the size of the
RAM-backed /dev/shm volume. Leave empty to apply no limit.
This commit is contained in:
ychangkim
2026-04-01 17:40:33 +09:00
parent 9be83c6f3a
commit eb11d74e9f
2 changed files with 6 additions and 0 deletions
@@ -103,3 +103,6 @@ spec:
- name: dshm
emptyDir:
medium: Memory
{{- if .Values.shmSizeLimit }}
sizeLimit: {{ .Values.shmSizeLimit }}
{{- end }}