Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/erikerlandson/ray-odh-jupyter
jupyter notebook images for Open Data Hub, with ray libraries pre-installed
https://github.com/erikerlandson/ray-odh-jupyter
jupyter jupyter-notebook opendatahub openshift ray raylib
Last synced: about 1 month ago
JSON representation
jupyter notebook images for Open Data Hub, with ray libraries pre-installed
- Host: GitHub
- URL: https://github.com/erikerlandson/ray-odh-jupyter
- Owner: erikerlandson
- License: apache-2.0
- Created: 2021-02-21T18:58:23.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-05-26T16:35:22.000Z (over 3 years ago)
- Last Synced: 2024-06-11T20:20:01.220Z (6 months ago)
- Topics: jupyter, jupyter-notebook, opendatahub, openshift, ray, raylib
- Language: Shell
- Homepage:
- Size: 11.7 KB
- Stars: 3
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ray-odh-jupyter
jupyter notebook images for Open Data Hub, with ray libraries pre-installed
### Build ray-minimal-notebook
These environment variable settings build without Thoth advising.
```bash
$ cd /path/to/ray-odh-jupyter
$ ./scripts/podman-s2i-dir \
images/ray-minimal-notebook quay.io/erikerlandson/ray-minimal-notebook:latest \
quay.io/thoth-station/s2i-minimal-notebook:latest \
--env ENABLE_PIPENV=1 \
--env THOTH_ADVISE=0 \
--env THOTH_ERROR_FALLBACK=1 \
--env THOTH_DRY_RUN=1 \
--env THOTH_PROVENANCE_CHECK=0
```Here is an example of building with Thoth enabled.
The environment variable `THAMOS_CONFIG_TEMPLATE` is being used
to automatically probe the runtime environment and generate a
`.thoth.yaml` config on the fly.For more information refer to this
[example repo](https://github.com/thoth-station/s2i-example)```bash
./scripts/podman-s2i-dir \
images/ray-minimal-notebook quay.io/erikerlandson/ray-minimal-notebook:latest \
quay.io/thoth-station/s2i-minimal-notebook:latest \
--env ENABLE_PIPENV=1 \
--env THOTH_ADVISE=1 \
--env THOTH_DRY_RUN=0 \
--env THOTH_PROVENANCE_CHECK=1 \
--env THAMOS_CONFIG_TEMPLATE='thoth-conf-template.yaml'
```