mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/testlink] Fix default SMTP configuration (#3905)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
name: testlink
|
||||
version: 0.4.16
|
||||
version: 0.4.17
|
||||
appVersion: 1.9.16
|
||||
description: Web-based test management system that facilitates software quality assurance.
|
||||
icon: https://bitnami.com/assets/stacks/testlink/img/testlink-stack-220x234.png
|
||||
|
||||
@@ -40,15 +40,15 @@ spec:
|
||||
- name: TESTLINK_LANGUAGE
|
||||
value: {{ default "" .Values.testlinkLanguage | quote }}
|
||||
- name: SMTP_ENABLE
|
||||
value: {{ default "" .Values.smtpEnable | quote }}
|
||||
value: {{ .Values.smtpEnable | quote }}
|
||||
- name: SMTP_CONNECTION_MODE
|
||||
value: {{ default "" .Values.smtpConnectionMode | quote }}
|
||||
value: {{ .Values.smtpConnectionMode | quote }}
|
||||
- name: SMTP_HOST
|
||||
value: {{ default "" .Values.smtpHost | quote }}
|
||||
value: {{ .Values.smtpHost | quote }}
|
||||
- name: SMTP_PORT
|
||||
value: {{ default "" .Values.smtpPort | quote }}
|
||||
value: {{ .Values.smtpPort | quote }}
|
||||
- name: SMTP_USER
|
||||
value: {{ default "" .Values.smtpUser | quote }}
|
||||
value: {{ .Values.smtpUser | quote }}
|
||||
- name: SMTP_PASSWORD
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
|
||||
@@ -33,12 +33,12 @@ testlinkLanguage: en_US
|
||||
## SMTP mail delivery configuration
|
||||
## ref: https://github.com/bitnami/bitnami-docker-testlink#smtp-configuration
|
||||
##
|
||||
# smtpEnable: true
|
||||
# smtpHost: smtp.example.com
|
||||
# smtpPort: 587
|
||||
# smtpUser: mailer@example.com
|
||||
# smtpPassword: mailerpassword
|
||||
# smtpConnectionMode: tls
|
||||
smtpEnable: false
|
||||
smtpHost:
|
||||
smtpPort:
|
||||
smtpUser:
|
||||
smtpPassword:
|
||||
smtpConnectionMode:
|
||||
|
||||
##
|
||||
## MariaDB chart configuration
|
||||
|
||||
Reference in New Issue
Block a user