Skip to content

Commit

Permalink
Helm Chart: SSE Server is not capable to use built-in event bus (#841)
Browse files Browse the repository at this point in the history
  • Loading branch information
tnotheis authored Sep 4, 2024
1 parent 65bae08 commit 5d476db
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions helm/templates/sseserver/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,19 @@ spec:
subPath: appsettings.override.json
readOnly: true
env:
{{- if .Values.global.useBuiltInEventbus }}
- name: infrastructure__eventBus__vendor
value: RabbitMQ
- name: infrastructure__eventBus__connectionInfo
value: "rabbitmq"
- name: infrastructure__eventBus__rabbitMQUsername
value: "admin"
- name: infrastructure__eventBus__rabbitMQPassword
valueFrom:
secretKeyRef:
name: rabbitmq-password
key: "VALUE"
{{- end }}
{{- include "generateEnvVars" (list .Values.global.env .Values.sseserver.env) | nindent 12 }}
livenessProbe:
httpGet:
Expand Down

0 comments on commit 5d476db

Please sign in to comment.