9be83c6f3a
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.
56 lines
1.1 KiB
YAML
56 lines
1.1 KiB
YAML
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"
|
|
|
|
resources:
|
|
limits:
|
|
cpu: "2000m"
|
|
memory: "4096Mi"
|
|
requests:
|
|
cpu: "500m"
|
|
memory: "1024Mi"
|
|
gpu: ""
|
|
|
|
jupyterConfig:
|
|
token: ""
|
|
|
|
ingress:
|
|
enabled: true
|
|
ingressClassName: "kong"
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: "root-ca-issuer"
|
|
cert-manager.io/duration: "8760h"
|
|
cert-manager.io/renew-before: "720h"
|
|
konghq.com/https-redirect-status-code: "301"
|
|
konghq.com/protocols: "https"
|
|
hosts:
|
|
- host: "jupyter.example.com"
|
|
paths:
|
|
- /
|
|
tls:
|
|
- hosts:
|
|
- "jupyter.example.com"
|
|
secretName: "jupyter-tls-secret"
|
|
|
|
homeVolume:
|
|
enabled: false
|
|
size: "5Gi"
|
|
storageClassName: ""
|
|
accessMode: "ReadWriteOnce"
|
|
|
|
dataVolume:
|
|
enabled: false
|
|
size: "5Gi"
|
|
storageClassName: ""
|
|
accessMode: "ReadWriteOnce"
|
|
|
|
groupVolumes: []
|
|
|