Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Helm Charts for Minds Projects
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
0
Merge Requests
1
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Helm Charts for Minds Projects
Commits
b771f131
Commit
b771f131
authored
9 minutes ago
by
Brian Hatchet
Browse files
Options
Download
Quotes and defaults for email_confirmation config
parent
5ffc998c
1 merge request
!22
Adding a quote pipe to the default port
Pipeline
#107348520
passed with stage
in 1 minute and 7 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
minds/templates/configMap.yaml
View file @
b771f131
...
...
@@ -671,15 +671,15 @@ data:
'host' => {{ .Values.email.host | quote }},
'username' => {{ .Values.email.username | quote }},
'password' => {{ .Values.email.password | quote }},
'port' => {{ .Values.email.port | default 465
| quote
}},
'port' => {{ .Values.email.port | default 465 }},
'auth' => {{ .Values.email.auth | default true }},
'smtp_secure' => {{ .Values.email.smtp_secure | quote }}
]
]);
$CONFIG->set('email_confirmation', [
'signing_key' => '{{ .Values.email_confirmation.signing_key }}',
'expiration' => {{ .Values.email_confirmation.expiration }},
'signing_key' => '{{ .Values.email_confirmation.signing_key
| quote
}}',
'expiration' => {{ .Values.email_confirmation.expiration
| default 300
}},
]);
$CONFIG->cinemr_url = '{{ .Values.transcoder.cinemr_url }}';
...
...
This diff is collapsed.
Please
register
or
sign in
to comment