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 1ebc662 commit b6f2fd9
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
0.62.0
------

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

**Improvements**

- **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>`_


0.61.0
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 @@ -1377,11 +1377,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 @@ -1394,7 +1398,7 @@ search:
replicas: 1
image:
repository: renku/search-provision
tag: "0.6.2"
tag: "0.7.0"
pullPolicy: IfNotPresent
service:
type: ClusterIP
Expand Down

0 comments on commit b6f2fd9

Please sign in to comment.