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 }}
@@ -74,5 +74,8 @@ dataVolume:
# mountPath: "/group_data"
groupVolumes: []
# /dev/shm shared memory size limit (e.g. "512Mi", "1Gi"). Leave empty for no limit.
shmSizeLimit: "512Mi"
# imagePullSecrets for private registries
imagePullSecrets: []