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:7499e02f626b8fe4269fe49af9751bae72fce480c4e5822163e6143ae3bd6385
scipyImage:
repository: tccr.io/truecharts/jupyter-scipy
pullPolicy: IfNotPresent
tag: v2023-06@sha256:86c1ce16e39913c76049bf742bf243f8f40753e07228d4a99d7794661590b8e6
tensorflowImage:
repository: tccr.io/truecharts/jupyter-tensorflow
pullPolicy: IfNotPresent
tag: v2023-06@sha256:6d9fcce86ae33e556fd6c77f5bcc8584d6f1975351c1a42a899a2ddc675c9682
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:d46710cc40e86701c52b87345b69f203f42f5dc9e44910c8e630ec94efdff325
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 }}'