[stable/ghost] Add parameter to configure SMTP 'fromAddress' (#10522)

Signed-off-by: juan131 <juan@bitnami.com>
This commit is contained in:
Juan Ariza Toledano
2019-01-10 01:24:25 -08:00
committed by Kubernetes Prow Robot
parent 5b848eb1b6
commit 1f73e2c50a
4 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: ghost
version: 6.2.2
version: 6.2.3
appVersion: 2.10.1
description: A simple, powerful publishing platform that allows you to share your stories with the world
keywords:
+1
View File
@@ -70,6 +70,7 @@ The following table lists the configurable parameters of the Ghost chart and the
| `smtpPort` | SMTP port | `nil` |
| `smtpUser` | SMTP user | `nil` |
| `smtpPassword` | SMTP password | `nil` |
| `smtpFromAddress` | SMTP from address | `nil` |
| `smtpService` | SMTP service | `nil` |
| `allowEmptyPassword` | Allow DB blank passwords | `yes` |
| `serviceType` | Kubernetes Service type | `LoadBalancer` |
+4
View File
@@ -121,6 +121,10 @@ spec:
name: {{ template "ghost.fullname" . }}
key: smtp-password
{{- end }}
{{- if .Values.smtpFromAddress }}
- name: SMTP_FROM_ADDRESS
value: {{ .Values.smtpFromAddress | quote }}
{{- end }}
{{- if .Values.smtpService }}
- name: SMTP_SERVICE
value: {{ .Values.smtpService | quote }}
+1
View File
@@ -74,6 +74,7 @@ allowEmptyPassword: "yes"
# smtpPort:
# smtpUser:
# smtpPassword:
# smtpFromAddress
# smtpService:
##