Skip to content

Commit

Permalink
Synchronize kubeflow kubeflow manifests v1.9.0 (#2853)
Browse files Browse the repository at this point in the history
* Update kubeflow/kubeflow manifests from v1.9.0

Signed-off-by: juliusvonkohout <45896133+juliusvonkohout@users.noreply.github.com>

* update synchronization script

Signed-off-by: juliusvonkohout <45896133+juliusvonkohout@users.noreply.github.com>

---------

Signed-off-by: juliusvonkohout <45896133+juliusvonkohout@users.noreply.github.com>
  • Loading branch information
juliusvonkohout authored Aug 25, 2024
1 parent d7834bc commit 39b4c63
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ spawnerFormDefaults:
################################################################
image:
# the default container image
value: kubeflownotebookswg/jupyter-scipy:latest
value: kubeflownotebookswg/jupyter-scipy:v1.9.0

# the list of available container images in the dropdown
options:
- kubeflownotebookswg/jupyter-scipy:latest
- kubeflownotebookswg/jupyter-pytorch-full:latest
- kubeflownotebookswg/jupyter-pytorch-cuda-full:latest
- kubeflownotebookswg/jupyter-tensorflow-full:latest
- kubeflownotebookswg/jupyter-tensorflow-cuda-full:latest
- kubeflownotebookswg/jupyter-scipy:v1.9.0
- kubeflownotebookswg/jupyter-pytorch-full:v1.9.0
- kubeflownotebookswg/jupyter-pytorch-cuda-full:v1.9.0
- kubeflownotebookswg/jupyter-tensorflow-full:v1.9.0
- kubeflownotebookswg/jupyter-tensorflow-cuda-full:v1.9.0

################################################################
# VSCode-like Container Images (Group 1)
Expand All @@ -60,11 +60,11 @@ spawnerFormDefaults:
################################################################
imageGroupOne:
# the default container image
value: kubeflownotebookswg/codeserver-python:latest
value: kubeflownotebookswg/codeserver-python:v1.9.0

# the list of available container images in the dropdown
options:
- kubeflownotebookswg/codeserver-python:latest
- kubeflownotebookswg/codeserver-python:v1.9.0

################################################################
# RStudio-like Container Images (Group 2)
Expand All @@ -81,11 +81,11 @@ spawnerFormDefaults:
################################################################
imageGroupTwo:
# the default container image
value: kubeflownotebookswg/rstudio-tidyverse:latest
value: kubeflownotebookswg/rstudio-tidyverse:v1.9.0

# the list of available container images in the dropdown
options:
- kubeflownotebookswg/rstudio-tidyverse:latest
- kubeflownotebookswg/rstudio-tidyverse:v1.9.0

################################################################
# CPU Resources
Expand Down Expand Up @@ -130,10 +130,10 @@ spawnerFormDefaults:
# `limitsKey` - what will be set as the actual limit
# `uiName` - what will be displayed in the dropdown UI
vendors:
- limitsKey: "nvidia.com/gpu"
uiName: "NVIDIA"
- limitsKey: "amd.com/gpu"
uiName: "AMD"
- limitsKey: "nvidia.com/gpu"
uiName: "NVIDIA"
- limitsKey: "amd.com/gpu"
uiName: "AMD"

# the default value of the limit
# (possible values: "none", "1", "2", "4", "8")
Expand Down Expand Up @@ -162,7 +162,7 @@ spawnerFormDefaults:
requests:
storage: 5Gi
accessModes:
- ReadWriteOnce
- ReadWriteOnce

################################################################
# Data Volumes
Expand Down
4 changes: 2 additions & 2 deletions hack/synchronize-kubeflow-manifests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ else
fi
echo "Checking out in $SRC_DIR to $COMMIT..."

# Checkout the Model Registry repository
# Checkout the upstream repository
mkdir -p $SRC_DIR
cd $SRC_DIR
if [ ! -d "kubeflow/.git" ]; then
git clone https://github.com/kubeflow/kubeflow.git
fi
cd $SRC_DIR/models-web-app
cd $SRC_DIR/kubeflow
if ! git rev-parse --verify --quiet $COMMIT; then
git checkout -b $COMMIT
else
Expand Down

0 comments on commit 39b4c63

Please sign in to comment.