New environment variables OSMNBI_SMTP_SERVER, OSMNBI_SMTP_PORT, OSMNBI_SENDER_EMAIL, OSMNBI_EMAIL_PASSWORD, OSMNBI_OTP_RETRY_COUNT and OSMNBI_OTP_EXPIRY_TIME
Change-Id: Ic9fb2e833afc3230e64e43da96a0f9c49d3f0312
Signed-off-by: jegan <jegan.s@tataelxsi.co.in>
OSMNBI_STORAGE_COLLECTION: "files"
OSMNBI_LOG_LEVEL: {{ .Values.nbi.logLevel | default .Values.global.logLevel | default "INFO" }}
OSMNBI_USER_MANAGEMENT: "True"
+ {{- if .Values.nbi.smtp.enabled -}}
+ OSMNBI_SMTP_SERVER: {{ .Values.nbi.smtp.server }}
+ OSMNBI_SMTP_PORT: {{ .Values.nbi.smtp.port }}
+ OSMNBI_SENDER_EMAIL: {{ .Values.nbi.smtp.senderEmail }}
+ OSMNBI_OTP_RETRY_COUNT: {{ .Values.nbi.smtp.otpRetryCount }}
+ OSMNBI_OTP_EXPIRY_TIME: {{ .Values.nbi.smtp.otpExpiryTime }}
+ {{- end }}
{{- end }}
# replicaCount: 1
useOsmSecret: true
# secretName: "nbi-secret"
+ smtp:
+ enabled: false
+ server: ""
+ port: ""
+ senderEmail: ""
+ otpRetryCount: 3
+ otpExpiryTime: 300
+ secretName: "osmnbi-email-password"
+ secretKey: "OSMNBI_EMAIL_PASSWORD"
+
ngui:
enabled: true