From 7da9c5444f7c666feefbdda2d20c267b352a634a Mon Sep 17 00:00:00 2001 From: Moti Asayag Date: Wed, 7 Aug 2024 21:59:47 +0300 Subject: [PATCH] Set broadcast default to none Signed-off-by: Moti Asayag rh-pre-commit.version: 2.3.1 rh-pre-commit.check-secrets: ENABLED --- charts/orchestrator/Chart.yaml | 2 +- .../orchestrator/templates/rhdh-operator.yaml | 32 ++++++++++--------- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/charts/orchestrator/Chart.yaml b/charts/orchestrator/Chart.yaml index f222e58..8bcdf80 100644 --- a/charts/orchestrator/Chart.yaml +++ b/charts/orchestrator/Chart.yaml @@ -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 diff --git a/charts/orchestrator/templates/rhdh-operator.yaml b/charts/orchestrator/templates/rhdh-operator.yaml index 458a348..e58db35 100644 --- a/charts/orchestrator/templates/rhdh-operator.yaml +++ b/charts/orchestrator/templates/rhdh-operator.yaml @@ -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