From 56314e42d944b85990aa8c6ae4124bead0e4dd45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tibor=20=C5=A0imko?= Date: Wed, 15 Jan 2025 17:32:58 +0100 Subject: [PATCH] chore(master): fix upgrade to Jupyter SciPy 7.2.2 notebook Fixes the upgrade of Jupyter SciPy notebook version from 6.4.5 to 7.2.2 after the recent maint-to-master merge commit (#859) that did not propagate the upgrade of Jupyter SciPy notebook version everywhere in the `master` branch. --- helm/reana/README.md | 2 +- helm/reana/values.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/helm/reana/README.md b/helm/reana/README.md index 1a4d8a50..bd94856b 100644 --- a/helm/reana/README.md +++ b/helm/reana/README.md @@ -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. | [] | diff --git a/helm/reana/values.yaml b/helm/reana/values.yaml index e2bba398..75949ab3 100644 --- a/helm/reana/values.yaml +++ b/helm/reana/values.yaml @@ -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