Skip to content

Commit

Permalink
release 0.53.1 (#3673)
Browse files Browse the repository at this point in the history
* chore: create release 0.53.1

* fix: Allow to configure jwt issuer urls for search-api (#3672)

* fix: Allow to configure jwt issuer urls for search-api

* Update search services to 0.3.0

This release for renku-search makes it mandatory to specify a list of
allowed jwt issuer url patterns.

* chore: Update CHANGELOG.rst wording

Co-authored-by: Flora Thiebaut <[email protected]>

* Set default value for jwt.allowedIssuerUrls (#3677)

Use the existing `renku.keycloakUrl` as the allowed issuer url for renku-search

* Update changelog wording due to reflect new changes (#3678)

---------

Co-authored-by: eikek <[email protected]>
Co-authored-by: Rok Roškar <[email protected]>
Co-authored-by: Flora Thiebaut <[email protected]>
  • Loading branch information
4 people authored Jun 13, 2024
1 parent fd1e494 commit 78f0e8c
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
.. _changelog:

0.53.1
------

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

**🐞 Bug Fixes**

- **Search Services**: Set keycloak url into the allow list of JWT
issuer urls. This setting is now mandatory to the search-api
service.

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

- `renku-search 0.3.0 <https://github.com/SwissDataScienceCenter/renku-search/releases/tag/v0.3.0>`_


0.53.0
------

Expand Down
2 changes: 2 additions & 0 deletions helm-chart/renku/templates/search/search-api-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ spec:
value: "500ms"
- name: RS_SOLR_LOG_MESSAGE_BODIES
value: "false"
- name: "RS_JWT_ALLOWED_ISSUER_URL_PATTERNS"
value: "{{ include "renku.keycloakUrl" . }}*/*"
- name: JAVA_OPTS
value: "-Xmx{{ .Values.search.searchApi.jvmXmx }} -XX:+UseZGC -XX:+ZGenerational"
ports:
Expand Down
4 changes: 2 additions & 2 deletions helm-chart/renku/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1391,7 +1391,7 @@ search:
replicas: 1
image:
repository: renku/search-api
tag: "0.2.0"
tag: "0.3.0"
pullPolicy: IfNotPresent
service:
type: ClusterIP
Expand All @@ -1404,7 +1404,7 @@ search:
replicas: 1
image:
repository: renku/search-provision
tag: "0.2.0"
tag: "0.3.0"
pullPolicy: IfNotPresent
service:
type: ClusterIP
Expand Down

0 comments on commit 78f0e8c

Please sign in to comment.