Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow overriding Jupyter busybox image source #100

Merged
merged 1 commit into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/mlrun-ce/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
version: 0.6.3-rc14
version: 0.6.3-rc15
name: mlrun-ce
description: MLRUn Open Source Stack
home: https://iguazio.com
Expand Down
2 changes: 1 addition & 1 deletion charts/mlrun-ce/templates/jupyter-notebook/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
- name: init-chown-data
# jupyter default NB user: uid=1000(jovyan) gid=100(users) groups=100(users)
command: ["chown", "-R", "1000:100", "/home/jovyan/"]
image: busybox:1.35
image: "{{ .Values.jupyterNotebook.busybox.image }}:{{ .Values.jupyterNotebook.busybox.tag }}"
imagePullPolicy: IfNotPresent
securityContext:
runAsUser: 0
Expand Down
3 changes: 3 additions & 0 deletions charts/mlrun-ce/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,9 @@ jupyterNotebook:
repository: quay.io/mlrun/jupyter
tag: 1.6.1
pullPolicy: IfNotPresent
busybox:
image: busybox
tag: 1.35

# use this to override mlrunUIURL, by default it will be auto-resolved to externalHostAddress and
# mlrun UI's node port
Expand Down
Loading