File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ type: application
18
18
# This is the chart version. This version number should be incremented each time you make changes
19
19
# to the chart and its templates, including the app version.
20
20
# Versions are expected to follow Semantic Versioning (https://semver.org/)
21
- version : 5.1.53
21
+ version : 5.1.54
22
22
23
23
# This is the version number of the application being deployed. This version number should be
24
24
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 71
71
args :
72
72
- messenger:consume
73
73
- email
74
+ {{- if .Values.mautic.messenger.consumeEmail.debug }}
75
+ - -vv
76
+ {{- end }}
74
77
envFrom :
75
78
{{- include "mautic.envFrom" . | nindent 12 }}
76
79
volumeMounts :
@@ -107,6 +110,9 @@ spec:
107
110
args :
108
111
- messenger:consume
109
112
- hit
113
+ {{- if .Values.mautic.messenger.consumeHit.debug }}
114
+ - -vv
115
+ {{- end }}
110
116
envFrom :
111
117
{{- include "mautic.envFrom" . | nindent 12 }}
112
118
volumeMounts :
@@ -143,6 +149,9 @@ spec:
143
149
args :
144
150
- messenger:consume
145
151
- failed
152
+ {{- if .Values.mautic.messenger.consumeFailed.debug }}
153
+ - -vv
154
+ {{- end }}
146
155
envFrom :
147
156
{{- include "mautic.envFrom" . | nindent 12 }}
148
157
volumeMounts :
Original file line number Diff line number Diff line change @@ -131,12 +131,15 @@ mautic:
131
131
consumeEmail :
132
132
enabled : true
133
133
resources : *resources
134
+ debug : false
134
135
consumeFailed :
135
136
enabled : true
136
137
resources : *resources
138
+ debug : false
137
139
consumeHit :
138
140
enabled : true
139
141
resources : *resources
142
+ debug : false
140
143
141
144
service :
142
145
type : ClusterIP
You can’t perform that action at this time.
0 commit comments