Skip to content

Commit

Permalink
release 2023b (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
guimou authored Feb 2, 2023
1 parent 427e5f6 commit a227aa9
Show file tree
Hide file tree
Showing 55 changed files with 2,210 additions and 1,231 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,24 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

- Update to the CUDA RStudio and Jupyter + RStudio images to include the CUDA toolkit. At it's only an enhancement that is fully compatible with prior versions, we are not creating a new specific release.
## [2023b] - 2023-02-01

- Update to the CUDA RStudio and Jupyter + RStudio images to include the CUDA toolkit. This is necessary to install certain packages that are compiled in-place.
- Update to RStudio and VSCode images (standalone versions). They are now fully compatible with the dashboard, so can be used as standard custom images. Idle culling also works with those images.
- Addition of some packages:
- Minimal:
- jupyter-server-terminals ~=0.4.4 and jupyter-server ~=2.1.0: this will allow culling to work for terminals once enable on the notebook controller.
- Updates of some packages versions:
- Minimal:
- jupyterlab ~=3.5.2 -> ~=3.5.3
- jupyter-resource-usage: ~=0.6.4 -> ~=0.7.0
- Datascience:
- matplotlib ~=3.6.2 -> ~=3.6.3
- pandas ~=1.5.2 -> ~=1.5.3
- plotly ~=5.11.0 -> ~=5.13.0
- scikit-learn ~=1.2.0 -> ~=1.2.1
- scipy ~=1.9.3 -> ~=1.10.0
- streamlit ~=1.16.0 -> ~=1.17.0

## [2023a] - 2023-01-02

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ default:
@echo "Please specify:"
@echo " - the release number with RELEASE=... (defaults to git tag or 'dev')"
@echo " - the build date with DATE=... (defaults to current date)"
@echo " - the reepository to push to with REPO=... (defaults to 'quay.io/opendatahub-contrib/workbench-images')"
@echo " - the repository to push to with REPO=... (defaults to 'quay.io/opendatahub-contrib/workbench-images')"

all: refresh-pipfile-lock build-all push-all

Expand Down
118 changes: 86 additions & 32 deletions README.md

Large diffs are not rendered by default.

42 changes: 21 additions & 21 deletions base/c9s/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 21 additions & 21 deletions base/ubi8/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 18 additions & 18 deletions base/ubi9/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions code-server/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,14 @@ validate-py39:
fi; \
fi; \
done ; \
echo "=> Checking for Jupyter ability to start..." ; \
echo "=> Checking for Code-Server ability to start..." ; \
podman run -d --network=host --name validation-container $$IMAGE ; \
for i in {1..6}; do \
nc -z localhost 8888 && break || sleep 5; \
nc -z localhost 8787 && break || sleep 5; \
done; \
nc -z localhost 8888 ; \
nc -z localhost 8787 ; \
if [ $$? -ne 0 ]; then \
echo "ERROR: Image $$IMAGE cannot start Jupyter" ; \
echo "ERROR: Image $$IMAGE cannot start Code-Server" ; \
fail=1; \
fi; \
echo "Removing container" ; \
Expand Down
2 changes: 1 addition & 1 deletion code-server/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Code-Server (VSCode) image

Standalone Code-Server (VSCode) image. **The ODH or RHODS dashboards are not compatible** with this image yet. However, a standalone deployment file using the Kubeflow Notebook Controller is available: `code-server-example.yaml`
Standalone Code-Server (VSCode) image.

Images are available at [quay.io/opendatahub-io-contrib/workbench-images](https://quay.io/opendatahub-io-contrib/workbench-images)

Expand Down
30 changes: 0 additions & 30 deletions code-server/code-server-example.yaml

This file was deleted.

Loading

0 comments on commit a227aa9

Please sign in to comment.