fix(univention-management-stack): Set SMTP host for self-service notifications

This commit is contained in:
Thomas Kintscher
2023-11-20 21:44:29 +01:00
committed by Johannes Bornhold
parent 211bee94bb
commit 0c7a77c4b6
2 changed files with 7 additions and 0 deletions

View File

@@ -28,6 +28,11 @@ stackDataContext:
portalManagementProjectLinkBase: "https://{{ .Values.global.hosts.openproject }}.{{ .Values.global.domain }}"
portalManagementKnowledgeLinkBase: "https://{{ .Values.global.hosts.xwiki }}.{{ .Values.global.domain }}"
smtpHost: {{ .Values.smtp.host | quote }}
smtpPort: 587
smtpUser: {{ .Values.smtp.username | quote }}
smtpStartTls: true
oxDefaultContext: "10"
userPassword: {{ .Values.secrets.univentionManagementStack.defaultAccounts.userPassword | quote }}

View File

@@ -9,6 +9,8 @@ umcServer:
# TODO: Secret should be entered without b64enc
machineSecret: {{ .Values.secrets.univentionManagementStack.ldapSecret | b64enc | quote }}
smtpSecret: {{ .Values.smtp.password | quote }}
image:
registry: {{ .Values.global.imageRegistry | quote }}
repository: {{ .Values.images.umsUmcServer.repository | quote }}