Skip to content

Commit

Permalink
Update search to release 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eikek committed Dec 4, 2024
1 parent 1c875af commit 3b98495
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 3 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,20 @@ Internal Changes

**Improvements**

* **Infrastructure Components**: ``redis`` has been upgraded from version ``7.0.7`` to ``7.4.1``
- **Infrastructure Components**: ``redis`` has been upgraded from version ``7.0.7`` to ``7.4.1``
- **Search services**: Add support for sentry


**Bug Fixes**

- **Search services**: Unselect results without linked namespaces


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

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


* **Helm chart**: remove the custom-made Gitlab Omnibus Helm chart from Renku dependencies

Expand Down
6 changes: 6 additions & 0 deletions helm-chart/renku/templates/search/search-api-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ spec:
value: "false"
- name: "RS_JWT_ALLOWED_ISSUER_URL_PATTERNS"
value: "{{ include "renku.keycloakUrl" . }}*/*"
- name: "RS_SENTRY_DSN"
value: {{ .Values.search.sentry.dsn | quote }}
- name: "RS_SENTRY_ENV"
value: {{ .Values.search.sentry.environment | quote }}
- name: "RS_SENTRY_ENABLED"
value: {{ .Values.search.sentry.enabled | quote}}
- name: JAVA_OPTS
value: "-Xmx{{ .Values.search.searchApi.jvmXmx }} -XX:+UseZGC -XX:+ZGenerational"
ports:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ spec:
value: "500ms"
- name: RS_SOLR_LOG_MESSAGE_BODIES
value: "false"
- name: "RS_SENTRY_DSN"
value: {{ .Values.search.sentry.dsn | quote }}
- name: "RS_SENTRY_ENV"
value: {{ .Values.search.sentry.environment | quote }}
- name: "RS_SENTRY_ENABLED"
value: {{ .Values.search.sentry.enabled | quote }}
- name: JAVA_OPTS
value: "-Xmx{{ .Values.search.searchProvision.jvmXmx }} -XX:+UseZGC -XX:+ZGenerational"
ports:
Expand Down
8 changes: 6 additions & 2 deletions helm-chart/renku/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1237,11 +1237,15 @@ jena:
enabled: false
## Configuration for renku-search services
search:
sentry:
enabled: false
dsn:
environment:
searchApi:
replicas: 1
image:
repository: renku/search-api
tag: "0.6.2"
tag: "0.7.0"
pullPolicy: IfNotPresent
service:
type: ClusterIP
Expand All @@ -1254,7 +1258,7 @@ search:
replicas: 1
image:
repository: renku/search-provision
tag: "0.6.2"
tag: "0.7.0"
pullPolicy: IfNotPresent
service:
type: ClusterIP
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 @@ -8,6 +8,7 @@ Please follow this convention when adding a new row
## Upgrading to Renku 0.62.0

* DELETE ``gitlab.*`` - all values related to the bundled GitLab have been removed. GitLab must from now on be provided as an external service and is no longer supplied as a part of the Renku Helm chart.
* NEW `search.sentry.environment|dsn|enabled` to set the sentry environment for the search services

## Upgrading to Renku 0.61.0

Expand Down

0 comments on commit 3b98495

Please sign in to comment.