Skip to content

Commit

Permalink
Merge pull request #259 from masayag/broadcast-none
Browse files Browse the repository at this point in the history
Set broadcast default to none
  • Loading branch information
masayag authored Aug 7, 2024
2 parents 069b654 + 7da9c54 commit dba7513
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion charts/orchestrator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.2.0-rc17
version: 1.2.0-rc18

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
32 changes: 17 additions & 15 deletions charts/orchestrator/templates/rhdh-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -291,27 +291,29 @@ data:
integrity: {{ .Values.rhdhPlugins.notificationsEmail.integrity }}
pluginConfig:
notifications:
processors:
email:
transportConfig:
transport: smtp
hostname: {{ printf "${%s}" .Values.rhdhOperator.secretRef.notificationsEmail.hostname }}
port: {{ .Values.rhdhPlugins.notificationsEmail.port }}
secure: false
processors:
email:
transportConfig:
transport: smtp
hostname: {{ printf "${%s}" .Values.rhdhOperator.secretRef.notificationsEmail.hostname }}
port: {{ .Values.rhdhPlugins.notificationsEmail.port }}
secure: false
{{- if .Values.rhdhOperator.secretRef.notificationsEmail.username }}
username: {{ printf "${%s}" .Values.rhdhOperator.secretRef.notificationsEmail.username }}
username: {{ printf "${%s}" .Values.rhdhOperator.secretRef.notificationsEmail.username }}
{{- end}}
{{- if .Values.rhdhOperator.secretRef.notificationsEmail.password }}
password: {{ printf "${%s}" .Values.rhdhOperator.secretRef.notificationsEmail.password }}
password: {{ printf "${%s}" .Values.rhdhOperator.secretRef.notificationsEmail.password }}
{{- end}}
sender: {{ .Values.rhdhPlugins.notificationsEmail.sender }}
sender: {{ .Values.rhdhPlugins.notificationsEmail.sender }}
{{- if .Values.rhdhPlugins.notificationsEmail.replyTo }}
replyTo: {{ .Values.rhdhPlugins.notificationsEmail.replyTo }}
replyTo: {{ .Values.rhdhPlugins.notificationsEmail.replyTo }}
{{- end}}
concurrencyLimit: 10
cache:
ttl:
days: 1
broadcastConfig:
receiver: "none"
concurrencyLimit: 10
cache:
ttl:
days: 1
{{- end }}
---
apiVersion: v1
Expand Down

0 comments on commit dba7513

Please sign in to comment.