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: bump renku-gateway to 1.3.0 #3827

Merged
merged 19 commits into from
Oct 31, 2024
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
5 changes: 3 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,15 @@ Internal Changes
**Improvements**

- **UI**: Update the Admin page to set up Connected services (`#3332 <https://github.com/SwissDataScienceCenter/renku-ui/pull/3332>`__).
- **Gateway**: Add support for enabling debug logs from the gateway (`#730 <https://github.com/SwissDataScienceCenter/renku-gateway/pull/730>`__).

Individual Components
~~~~~~~~~~~~~~~~~~~~~

- `renku-data-services 0.25.0 <https://github.com/SwissDataScienceCenter/renku-data-services/releases/tag/v0.25.0>`__
- `renku-data-services 0.25.0 <https://github.com/SwissDataScienceCenter/renku-data-services/releases/tag/v0.25.0>`_
- `renku-gateway 1.3.0 <https://github.com/SwissDataScienceCenter/renku-gateway/releases/tag/1.3.0>`_
- `renku-ui 3.41.0 <https://github.com/SwissDataScienceCenter/renku-ui/releases/tag/3.41.0>`_


0.59.2
------

Expand Down
1 change: 1 addition & 0 deletions helm-chart/renku/templates/gateway/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ metadata:
heritage: {{ .Release.Service }}
data:
config.yaml: |
debugMode: {{ .Values.gateway.debug | default false }}
server:
port: 8080
host: 0.0.0.0
Expand Down
4 changes: 3 additions & 1 deletion helm-chart/renku/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1281,7 +1281,7 @@ gateway:
secretKey:
image:
repository: renku/renku-gateway
tag: "1.2.0"
tag: "1.3.0"
pullPolicy: IfNotPresent
service:
type: ClusterIP
Expand All @@ -1308,6 +1308,8 @@ gateway:
# dedicated GitLab instance is deployed, so, logging out from Renku should
# trigger a logout from GitLab.
logoutGitLabUponRenkuLogout: true
# Turns on debug logs from the gateway
debug: false
# sentry configuration
sentry:
enabled: false
Expand Down
1 change: 1 addition & 0 deletions helm-chart/values.yaml.changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Please follow this convention when adding a new row

* NEW ``gateway.idleSessionTTLSeconds`` to set the session idle TTL in seconds.
* NEW ``gateway.maxSessionTTLSeconds`` to set the session max TTL in seconds.
* NEW ``gateway.debug`` to enable debug logs from the gateway.

## Upgrading to Renku 0.59.1

Expand Down
Loading