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

chore: prep 1.2.0 release #807

Merged
merged 3 commits into from
Nov 15, 2021
Merged
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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog for renku-notebooks

## [1.2.0](https://github.com/SwissDataScienceCenter/renku-notebooks/compare/1.1.1...1.2.0) (2021-11-15)

### Bug Fixes

* **app:** check out the correct branch instead of always master([#802](https://github.com/SwissDataScienceCenter/renku-notebooks/issues/802)) ([5a9ffbe](https://github.com/SwissDataScienceCenter/renku-notebooks/commit/5a9ffbeed0ae299e10f35b35d9ada34069d00e97))
* **chart:** use current fallback renku image ([#803](https://github.com/SwissDataScienceCenter/renku-notebooks/issues/803)) ([30df71b](https://github.com/SwissDataScienceCenter/renku-notebooks/commit/30df71bf98f6635bb90552a5944148fb245a2f51))

### Features

* **chart:** add session tolerations, affinity, nodeSelector ([#806](https://github.com/SwissDataScienceCenter/renku-notebooks/issues/806)) ([49a2d54](https://github.com/SwissDataScienceCenter/renku-notebooks/commit/49a2d545bd041b2e4342093bb578ad8305b66a5e))
* **app:** new Amalthea version - 0.2.1

## [1.1.1](https://github.com/SwissDataScienceCenter/renku-notebooks/compare/1.1.0...1.1.1) (2021-11-08)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion helm-chart/renku-notebooks/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
appVersion: '1.0'
description: A Helm chart for the Renku Notebooks service
name: renku-notebooks
version: 1.1.1
version: 1.2.0
6 changes: 3 additions & 3 deletions helm-chart/renku-notebooks/requirements.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: amalthea
repository: https://swissdatasciencecenter.github.io/helm-charts/
version: 0.1.3
digest: sha256:85ed8b853f3a5b9027a4b6f263e15fb3d056a3516bb58f31b941e3c0c201083f
generated: "2021-11-08T11:20:54.330125+01:00"
version: 0.2.1
digest: sha256:bcfa119be4ac8677f1ac2b2a7ea25537a1d683809ad9f382d3dd4083e50f70da
generated: "2021-11-15T23:33:56.673807+01:00"
2 changes: 1 addition & 1 deletion helm-chart/renku-notebooks/requirements.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dependencies:
- name: amalthea
repository: "https://swissdatasciencecenter.github.io/helm-charts/"
version: 0.1.3
version: 0.2.1
7 changes: 6 additions & 1 deletion helm-chart/renku-notebooks/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,12 @@ sessionIngress:
nginx.ingress.kubernetes.io/proxy-request-buffering: "off"

## Setup node selector, tolerations and node affinities for user sessions that are launched
## by the notebook service.
## by the notebook service. These can be used so that user sessions are only scheduled on
## dedicated nodes rather than on all nodes in a cluster. A strict setup where session pods
## are scheduled only on dedicated nodes and nothing else is scheduled on said nodes would involve:
## (i) taints on the nodes to prevent other non-session workloads from getting scheduled there,
## (ii) tolerations below to make sure the user session pods can get schedulded on the dedicated nodes,
## (iii) node affinity below to make sure the user sessions do not get scheduled on other nodes.
sessionNodeSelector: {}
sessionTolerations: []
sessionAffinity: {}
Expand Down