fixed SMTP parameter naming

This commit is contained in:
Sameer Naik
2017-01-05 16:58:33 +05:30
parent c289f02438
commit fcccfa2bfd
4 changed files with 17 additions and 17 deletions
+5 -5
View File
@@ -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` |
+5 -5
View File
@@ -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
+1 -1
View File
@@ -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 }}
+6 -6
View File
@@ -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