feat: support inline tag in image.repository for jupyterlab chart

Allow repository field to include a tag (e.g. "repo:tag"), in which case
the tag field is ignored. Update docs and custom-values to reflect the
new behavior and add dshm volume notes.
This commit is contained in:
ychangkim
2026-03-31 12:29:23 +09:00
parent b4213e4872
commit 9be83c6f3a
6 changed files with 55 additions and 12 deletions
@@ -1,5 +1,11 @@
image:
registry: "quay.io"
# tag는 생략 가능. repository에 태그 포함 시 tag 필드 무시됨.
# 예시1: repository만으로 태그 지정
# repository: "jupyter/scipy-notebook:ubuntu-22.04"
# 예시2: repository + tag 분리
# repository: "jupyter/scipy-notebook"
# tag: "latest"
repository: "jupyter/scipy-notebook"
tag: "latest"