diff --git a/CHANGELOG.rst b/CHANGELOG.rst index da5d5d53f9..1ed753c971 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 `_ + + 0.53.0 ------ diff --git a/helm-chart/renku/templates/search/search-api-deployment.yaml b/helm-chart/renku/templates/search/search-api-deployment.yaml index 2fcb35ecc6..7d4e156e9c 100644 --- a/helm-chart/renku/templates/search/search-api-deployment.yaml +++ b/helm-chart/renku/templates/search/search-api-deployment.yaml @@ -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: diff --git a/helm-chart/renku/values.yaml b/helm-chart/renku/values.yaml index a3149739ef..2b33dbb33a 100644 --- a/helm-chart/renku/values.yaml +++ b/helm-chart/renku/values.yaml @@ -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 @@ -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