From 37b50008ae2522bb18e706b2e098c0654d9b3a2b Mon Sep 17 00:00:00 2001 From: zhenyus Date: Mon, 24 Feb 2025 02:17:35 +0800 Subject: [PATCH] fix(notification): add RabbitMQ username, password, and virtual host to configuration Signed-off-by: zhenyus --- .../templates/notification/notification-config.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/freeleaps/helm-pkg/notification/templates/notification/notification-config.yaml b/freeleaps/helm-pkg/notification/templates/notification/notification-config.yaml index f1fa638e..6d4cccbe 100644 --- a/freeleaps/helm-pkg/notification/templates/notification/notification-config.yaml +++ b/freeleaps/helm-pkg/notification/templates/notification/notification-config.yaml @@ -11,6 +11,9 @@ data: SERVICE_API_ACCESS_PORT: {{ .Values.notification.configs.serviceApiAccessPort | toString | b64enc }} RABBITMQ_HOST: {{ .Values.notification.configs.rabbitmqHost | b64enc | quote }} RABBITMQ_PORT: {{ .Values.notification.configs.rabbitmqPort | toString | b64enc }} + RABBITMQ_USERNAME: {{ .Values.notification.configs.rabbitmqUsername | b64enc | quote }} + RABBITMQ_PASSWORD: {{ .Values.notification.configs.rabbitmqPassword | b64enc | quote }} + RABBITMQ_VRITUAL_HOST: {{ .Values.notification.configs.rabbitmqVritualHost | b64enc | quote }} SYSTEM_USER_ID: {{ .Values.notification.configs.systemUserId | b64enc | quote }} SMS_FROM: {{ .Values.notification.configs.smsFrom | b64enc | quote }} EMAIL_FROM: {{ .Values.notification.configs.emailFrom | b64enc | quote }}