Skip to content

Commit

Permalink
chore(master): fix upgrade to Jupyter SciPy 7.2.2 notebook
Browse files Browse the repository at this point in the history
Fixes the upgrade of Jupyter SciPy notebook version from 6.4.5 to 7.2.2
after the recent maint-to-master merge commit (reanahub#859) that did not
propagate the upgrade of Jupyter SciPy notebook version everywhere in
the `master` branch.
  • Loading branch information
tiborsimko committed Jan 15, 2025
1 parent d9c375f commit 56314e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion helm/reana/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ collisions.
| `workspaces.retention_rules.cronjob_schedule` | Cron format string describing how often pending retention rules should be applied. | `"0 2 * * *"` |
| `workspaces.paths` | List of additional workspace paths as strings. Each mount string is composed by a key `hostPath`(path to the directory to be mounted from the Kubernetes nodes) and a cluster_pod_mountpath (path inside the cluster containers where the `mountPath` will be mounted) e.g. `hostPath:mountPath`. The first value listed will be the default workspace root path. Any POSIX filesystem mounted on cluster nodes is supported | None |
| `interactive_sessions.cronjob_schedule` | Cron format string describing how often interactive session cleanup should be performed. | `"0 3 * * *"` |
| `interactive_sessions.environments.jupyter.recommended` | List of recommended environments (container images) for Jupyter notebooks. Each environment is composed of a `name` and an `image`. The first environment in the list is the default one. | `[{"image": "docker.io/jupyter/scipy-notebook:notebook-6.4.5", "name": "Jupyter SciPy Notebook 6.4.5"}]` |
| `interactive_sessions.environments.jupyter.recommended` | List of recommended environments (container images) for Jupyter notebooks. Each environment is composed of a `name` and an `image`. The first environment in the list is the default one. | `[{"image": "docker.io/jupyter/scipy-notebook:notebook-7.2.2", "name": "Jupyter SciPy Notebook 7.2.2"}]` |
| `interactive_sessions.environments.jupyter.allow_custom` | Allow users to specify custom docker images for Jupyter notebooks. | false |
| `interactive_sessions.maximum_inactivity_period` | Set a limit in days for the maximum inactivity period of interactive sessions. After this period interactive sessions will be automatically closed. To disable autoclosure and allow interactive sessions to run forever, use value "forever". | forever |
| `components.reana_ui.launcher_examples` | Array of demo examples to show in the launch page in the UI. Each demo repository is composed of `name`, `url`, `image_url`; you can also optionally specify a `description` and the `specification` filename. | [] |
4 changes: 2 additions & 2 deletions helm/reana/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ interactive_sessions:
environments:
jupyter:
recommended:
- image: "docker.io/jupyter/scipy-notebook:notebook-6.4.5"
name: "Jupyter SciPy Notebook 6.4.5"
- image: "docker.io/jupyter/scipy-notebook:notebook-7.2.2"
name: "Jupyter SciPy Notebook 7.2.2"
allow_custom: false
maximum_inactivity_period: forever

Expand Down

0 comments on commit 56314e4

Please sign in to comment.