mirror of
https://github.com/wahyd4/charts.git
synced 2026-08-19 01:56:18 +10:00
fixed SMTP parameter naming
This commit is contained in:
@@ -55,11 +55,11 @@ The following tables lists the configurable parameters of the SuiteCRM chart and
|
||||
| `suitecrmLastName` | Last name | `Name` |
|
||||
| `suitecrmHost` | Host domain or IP | `nil` |
|
||||
| `suitecrmLoadBalancerIP` | `LoadBalancerIP for the application` | `nil` |
|
||||
| `smtpHost` | SMTP host | `nil` |
|
||||
| `smtpPort` | SMTP port | `nil` |
|
||||
| `smtpProtocol` | SMTP Protocol | `nil` |
|
||||
| `smtpUser` | SMTP user | `nil` |
|
||||
| `smtpPassword` | SMTP password | `nil` |
|
||||
| `suiteSmtpHost` | SMTP host | `nil` |
|
||||
| `suiteSmtpPort` | SMTP port | `nil` |
|
||||
| `suiteSmtpProtocol` | SMTP Protocol | `nil` |
|
||||
| `suiteSmtpUser` | SMTP user | `nil` |
|
||||
| `suiteSmtpPassword` | SMTP password | `nil` |
|
||||
| `mariadb.mariadbRootPassword` | MariaDB admin password | `nil` |
|
||||
| `serviceType` | Kubernetes Service type | `LoadBalancer` |
|
||||
| `persistence.enabled` | Enable persistence using PVC | `true` |
|
||||
|
||||
@@ -41,18 +41,18 @@ spec:
|
||||
- name: SUITECRM_HOST
|
||||
value: {{ default "" .Values.suitecrmHost | quote }}
|
||||
- name: SUITECRM_SMTP_HOST
|
||||
value: {{ default "" .Values.smtpHost | quote }}
|
||||
value: {{ default "" .Values.suitecrmSmtpHost | quote }}
|
||||
- name: SUITECRM_SMTP_PORT
|
||||
value: {{ default "" .Values.smtpPort | quote }}
|
||||
value: {{ default "" .Values.suitecrmSmtpPort | quote }}
|
||||
- name: SUITECRM_SMTP_USER
|
||||
value: {{ default "" .Values.smtpUser | quote }}
|
||||
value: {{ default "" .Values.suitecrmSmtpUser | quote }}
|
||||
- name: SUITECRM_SMTP_PASSWORD
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: {{ template "fullname" . }}
|
||||
key: smtp-password
|
||||
key: suitecrm-smtp-password
|
||||
- name: SUITECRM_SMTP_PROTOCOL
|
||||
value: {{ default "" .Values.smtpProtocol | quote }}
|
||||
value: {{ default "" .Values.suitecrmSmtpProtocol | quote }}
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: 80
|
||||
|
||||
@@ -14,4 +14,4 @@ data:
|
||||
{{- else }}
|
||||
suitecrm-password: {{ randAlphaNum 10 | b64enc | quote }}
|
||||
{{- end }}
|
||||
smtp-password: {{ default "" .Values.smtpPassword | b64enc | quote }}
|
||||
suitecrm-smtp-password: {{ default "" .Values.suitecrmSmtpPassword | b64enc | quote }}
|
||||
|
||||
@@ -42,13 +42,13 @@ suitecrmEmail: user@example.com
|
||||
|
||||
|
||||
## SMTP mail delivery configuration
|
||||
## ref: https://github.com/bitnami/bitnami-docker-suitecrm#smtp-configuration
|
||||
## ref: https://github.com/bitnami/bitnami-docker-suitecrm/#smtp-configuration
|
||||
##
|
||||
# smtpHost:
|
||||
# smtpPort:
|
||||
# smtpUser:
|
||||
# smtpPassword:
|
||||
# smtpProtocol:
|
||||
# suitecrmSmtpHost:
|
||||
# suitecrmSmtpPort:
|
||||
# suitecrmSmtpUser:
|
||||
# suitecrmSmtpPassword:
|
||||
# suitecrmSmtpProtocol:
|
||||
|
||||
##
|
||||
## MariaDB chart configuration
|
||||
|
||||
Reference in New Issue
Block a user