Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: turn off notebook service #3861

Draft
wants to merge 5 commits into
base: release-0.63.0
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
.. _changelog:

0.63.0
------

Renku ``0.63.0`` introduces various bug fixes, improvements and new features.

User-Facing Changes
~~~~~~~~~~~~~~~~~~~

**🐞 Bug Fixes**

- **Data services**: Allow mount and work directories to be reset for session environments.

Internal Changes
~~~~~~~~~~~~~~~~

**Improvements**

- **Amalthea**: Add preliminary support for private session images.
- **Gateway**: Route all notebook service traffic to data services.
- **Data services**: Migrate preliminary support for saving storage secrets for v1 sessions from notebooks.

**Bug Fixes**

- **Amalthea**: Fix typo in Service template for JupyterServers.
- **Data services**: Patching wrong environment variables when resuming v1 sessions.

Individual components
~~~~~~~~~~~~~~~~~~~~~~

- `amalthea 0.15.0 <https://github.com/SwissDataScienceCenter/amalthea/releases/tag/0.15.0>`_
- `renku-data-services 0.30.0 <https://github.com/SwissDataScienceCenter/renku-data-services/releases/tag/v0.30.0>`_
- `renku-gateway 1.4.0 <https://github.com/SwissDataScienceCenter/renku-gateway/releases/tag/1.4.0>`_

0.62.0
------

Expand Down
4 changes: 2 additions & 2 deletions helm-chart/renku/requirements.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ dependencies:
alias: jena
- name: amalthea
repository: "https://swissdatasciencecenter.github.io/helm-charts/"
version: "0.14.7"
version: "0.15.0"
- name: amalthea-sessions
repository: "https://swissdatasciencecenter.github.io/helm-charts/"
version: "0.14.7"
version: "0.15.0"
- name: dlf-chart
repository: "https://swissdatasciencecenter.github.io/datashim/"
version: "0.3.9-renku-2"
Expand Down
2 changes: 0 additions & 2 deletions helm-chart/renku/templates/notebooks/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ spec:
{{ end }}
- name: K8S_WATCHER_PORT
value: "8080"
- name: K8S_WATCHER_USER_ID_LABEL
value: renku.io/safe-username
ports:
- name: http
containerPort: 8080
Expand Down
8 changes: 4 additions & 4 deletions helm-chart/renku/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1146,7 +1146,7 @@ gateway:
secretKey:
image:
repository: renku/renku-gateway
tag: "1.3.1"
tag: "1.4.0"
pullPolicy: IfNotPresent
service:
type: ClusterIP
Expand Down Expand Up @@ -1459,14 +1459,14 @@ dataService:
create: true
image:
repository: renku/renku-data-service
tag: "0.28.0"
tag: "0.30.0"
pullPolicy: IfNotPresent
backgroundJobs:
events:
resources: {}
image:
repository: renku/data-service-background-jobs
tag: "0.28.0"
tag: "0.30.0"
pullPolicy: IfNotPresent
total:
resources: {}
Expand Down Expand Up @@ -1519,7 +1519,7 @@ authz:
secretsStorage:
image:
repository: renku/secrets-storage
tag: "0.28.0"
tag: "0.30.0"
pullPolicy: IfNotPresent
service:
type: ClusterIP
Expand Down
Loading