Skip to content

Commit

Permalink
Allow overriding Jupyter busybox image source
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpirogovski committed Apr 15, 2024
1 parent 63c5a5f commit 72e6e84
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
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

0 comments on commit 72e6e84

Please sign in to comment.