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 5e1748d commit a34fea1
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 3 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,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>`_


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
4 changes: 4 additions & 0 deletions helm-chart/values.yaml.changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ For changes that require manual steps other than changing values, please check o
Please follow this convention when adding a new row
* `<type: NEW|EDIT|DELETE> - *<resource name>*: <details>`

## Upgrading to Renku 0.62.0

* NEW `search.sentry.environment|dsn|enabled` to set the sentry environment for the search services

## Upgrading to Renku 0.61.0

* NEW ``networkPolicies.allowAllIngressFromPods`` specify pod selectors that will allow the selected pods to access all other services in the Renku release namespace.
Expand Down

0 comments on commit a34fea1

Please sign in to comment.