File tree 3 files changed +25
-1
lines changed
3 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ type: application
19
19
# This is the chart version. This version number should be incremented each time you make changes
20
20
# to the chart and its templates, including the app version.
21
21
# Versions are expected to follow Semantic Versioning (https://semver.org/)
22
- version : 0.3.2
22
+ version : 0.4.0
23
23
24
24
# This is the version number of the application being deployed. This version number should be
25
25
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 81
81
- name : ATUIN_METRICS__PORT
82
82
value : " {{ .Values.atuin.metrics.port}}"
83
83
{{- end }}
84
+
85
+ {{- if .Values.atuin.mail.enabled }}
86
+ - name : ATUIN_MAIL__ENABLED
87
+ value : " true"
88
+
89
+ {{- if .Values.atuin.mail.postmark.token}}
90
+ - name : ATUIN_MAIL__POSTMARK__TOKEN
91
+ value : {{ .Values.atuin.mail.postmark.token }}
92
+ {{- end }}
93
+
94
+ - name : ATUIN_MAIL__VERIFICATION__FROM
95
+ value : " {{ .Values.atuin.mail.verification.from }}"
96
+
97
+ - name : ATUIN_MAIL__VERIFICATION__SUBJECT
98
+ value : " {{ .Values.atuin.mail.verification.subject }}"
99
+ {{- end }}
84
100
ports :
85
101
- name : http
86
102
containerPort : {{ .Values.service.port }}
Original file line number Diff line number Diff line change @@ -40,6 +40,14 @@ atuin:
40
40
host : " 0.0.0.0"
41
41
port : 9001
42
42
43
+ mail :
44
+ enabled : false
45
+ postmark :
46
+ token : null
47
+ verification :
48
+ from : " Atuin"
49
+ subject : " Atuin Verification"
50
+
43
51
logLevel : info
44
52
45
53
# Enable registration
You can’t perform that action at this time.
0 commit comments