-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update notebook server images (#7590)
* feat: update example notebook server images Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * feat: move `01-copy-tmp-home` to base image Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * fix: rstudio HOME_TMP copy permissions Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * feat: update `torch` and `tensorflow` Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> * feat: manually install `tensorrt` Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com> --------- Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com>
- Loading branch information
1 parent
8869f22
commit 3f7ecfc
Showing
25 changed files
with
283 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
components/example-notebook-servers/base/s6/cont-init.d/01-copy-tmp-home
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/command/with-contenv bash | ||
|
||
# the home directory is usually a PVC | ||
# we need to copy the contents of $HOME_TMP that we populated during the build | ||
# NOTE: -n prevents overwriting existing files | ||
# NOTE: -T ensures that the CONTENTS of $HOME_TMP are copied, and not the directory itself | ||
echo "INFO: Copying contents of '$HOME_TMP' to '$HOME'..." | ||
cp -n -r -T "$HOME_TMP" "$HOME" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
components/example-notebook-servers/codeserver-python/requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
# kubeflow packages | ||
kfp==2.4.0 | ||
kfp-server-api==2.0.3 | ||
kfp==2.7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
components/example-notebook-servers/codeserver/s6/cont-init.d/01-copy-tmp-home
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
components/example-notebook-servers/jupyter-pytorch-cuda-full/requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
# kubeflow packages | ||
kfp==2.4.0 | ||
kfp-server-api==2.0.3 | ||
kfp==2.7.0 | ||
|
||
# jupyterlab extensions | ||
jupyterlab-git==0.44.0 | ||
jupyterlab-git==0.50.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
components/example-notebook-servers/jupyter-pytorch-full/requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
# kubeflow packages | ||
kfp==2.4.0 | ||
kfp-server-api==2.0.3 | ||
kfp==2.7.0 | ||
|
||
# jupyterlab extensions | ||
jupyterlab-git==0.44.0 | ||
jupyterlab-git==0.50.1 |
Oops, something went wrong.