Skip to content

Commit

Permalink
test sentry
Browse files Browse the repository at this point in the history
  • Loading branch information
eikek committed Dec 4, 2024
1 parent 82339f0 commit 3a3d54f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 deletions helm-chart/renku/templates/search/search-api-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ spec:
- name: "RS_JWT_ALLOWED_ISSUER_URL_PATTERNS"
value: "{{ include "renku.keycloakUrl" . }}*/*"
- name: "RS_SENTRY_DSN"
value: "https://[email protected]/14"
value: {{ $.Values.search.sentry.dsn }}
- name: "RS_SENTRY_ENV"
value: {{ $.Values.core.sentry.environment }}
value: {{ $.Values.search.sentry.environment }}
- name: "RS_SENTRY_ENABLED"
value: "true"
value: {{ $.Values.search.sentry.enabled }}
- 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 @@ -67,11 +67,11 @@ spec:
- name: RS_SOLR_LOG_MESSAGE_BODIES
value: "false"
- name: "RS_SENTRY_DSN"
value: "https://[email protected]/14"
value: {{ $.Values.search.sentry.dsn }}
- name: "RS_SENTRY_ENV"
value: {{ $.Values.core.sentry.environment }}
value: {{ $.Values.search.sentry.environment }}
- name: "RS_SENTRY_ENABLED"
value: "true"
value: {{ $.Values.search.sentry.enabled }}
- name: JAVA_OPTS
value: "-Xmx{{ .Values.search.searchProvision.jvmXmx }} -XX:+UseZGC -XX:+ZGenerational"
ports:
Expand Down
4 changes: 4 additions & 0 deletions helm-chart/renku/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1377,6 +1377,10 @@ jena:
enabled: false
## Configuration for renku-search services
search:
sentry:
enabled: true
dsn: https://[email protected]/14
environment: test
searchApi:
replicas: 1
image:
Expand Down

0 comments on commit 3a3d54f

Please sign in to comment.