diff --git a/stable/ghost/Chart.yaml b/stable/ghost/Chart.yaml index 142fb072d5..0aa4bb3880 100644 --- a/stable/ghost/Chart.yaml +++ b/stable/ghost/Chart.yaml @@ -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: diff --git a/stable/ghost/README.md b/stable/ghost/README.md index 39b26b5ca0..d2d9bd701d 100644 --- a/stable/ghost/README.md +++ b/stable/ghost/README.md @@ -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` | diff --git a/stable/ghost/templates/deployment.yaml b/stable/ghost/templates/deployment.yaml index 2126cb9c34..40c480f913 100644 --- a/stable/ghost/templates/deployment.yaml +++ b/stable/ghost/templates/deployment.yaml @@ -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 }} diff --git a/stable/ghost/values.yaml b/stable/ghost/values.yaml index 87c5938124..445d8e27b1 100644 --- a/stable/ghost/values.yaml +++ b/stable/ghost/values.yaml @@ -74,6 +74,7 @@ allowEmptyPassword: "yes" # smtpPort: # smtpUser: # smtpPassword: +# smtpFromAddress # smtpService: ##