Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: update search #3847

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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**: Don't return 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
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
Loading