TrueChartsClone/charts/stable/jupyter/values.yaml

69 lines
2.2 KiB
YAML

image:
repository: tccr.io/truecharts/jupyter-base
pullPolicy: IfNotPresent
tag: v2023-05@sha256:c525c6af572a075ad7d07ec482f35f6f3d422efb40b287315d64e51a09c7117a
minimalImage:
repository: tccr.io/truecharts/jupyter-minimal
pullPolicy: IfNotPresent
tag: v2023-05@sha256:17fb433dea9bbfd1c642fc71b151a9569412309d91731ae1ac297712cabba63d
rImage:
repository: tccr.io/truecharts/jupyter-r
pullPolicy: IfNotPresent
tag: v2023-06@sha256:50c60da5a6f62a9e4462a31046197d6bce4719a07c6b2c758e69994b7c06e9bc
scipyImage:
repository: tccr.io/truecharts/jupyter-scipy
pullPolicy: IfNotPresent
tag: v2023-06@sha256:c6a1d5e3e7223119683adf9ed37ba5c631be1b62d2057f0d5a0afe99c82ee9c3
tensorflowImage:
repository: tccr.io/truecharts/jupyter-tensorflow
pullPolicy: IfNotPresent
tag: v2023-06@sha256:75173cedf225891b2d12cb8421a8e976895efcb3c32c3a06a62c0e2ac61f9cce
datascienceImage:
repository: tccr.io/truecharts/jupyter-datascience
pullPolicy: IfNotPresent
tag: v2023-05@sha256:21eadc0a62c4c888ce9f18cfb45c6b78f8d74800e77fd5e69f855150e0018e0f
pysparkImage:
repository: tccr.io/truecharts/jupyter-pyspark
pullPolicy: IfNotPresent
tag: v2023-06@sha256:f8d400a33b58634b899d96bc6969c70c685e1f513aa6510440237fa082843d31
allsparkImage:
repository: tccr.io/truecharts/jupyter-all-spark
pullPolicy: IfNotPresent
tag: v2023-05@sha256:19d67f286692966e1871aa70aa544d53bc84ca18b70f7a05b33d399ee25f6ff6
jupyter:
jupyter_cmd: lab
restartable: true
service:
main:
ports:
main:
port: 10300
protocol: http
targetPort: 8888
persistence:
data:
enabled: true
mountPath: /home/jovyan/work
portal:
open:
enabled: true
securityContext:
container:
readOnlyRootFilesystem: false
runAsNonRoot: false
runAsUser: 0
runAsGroup: 0
workload:
main:
podSpec:
containers:
main:
imageSelector: image
env:
NB_UID: "{{ .Values.securityContext.container.PUID }}"
NB_GID: "{{ .Values.securityContext.pod.fsGroup }}"
NB_UMASK: "{{ .Values.securityContext.container.UMASK }}"
# User Defined
DOCKER_STACKS_JUPYTER_CMD: "{{ .Values.jupyter.jupyter_cmd }}"
RESTARTABLE: '{{ ternary "yes" "no" .Values.jupyter.restartable }}'