Skip to content

Commit fff1092

Browse files
committed
..
1 parent 096521f commit fff1092

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

charts/mautic/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type: application
1818
# This is the chart version. This version number should be incremented each time you make changes
1919
# to the chart and its templates, including the app version.
2020
# Versions are expected to follow Semantic Versioning (https://semver.org/)
21-
version: 5.1.53
21+
version: 5.1.54
2222

2323
# This is the version number of the application being deployed. This version number should be
2424
# incremented each time you make changes to the application. Versions are not expected to

charts/mautic/templates/deployment.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ spec:
7171
args:
7272
- messenger:consume
7373
- email
74+
{{- if .Values.mautic.messenger.consumeEmail.debug }}
75+
- -vv
76+
{{- end }}
7477
envFrom:
7578
{{- include "mautic.envFrom" . | nindent 12 }}
7679
volumeMounts:
@@ -107,6 +110,9 @@ spec:
107110
args:
108111
- messenger:consume
109112
- hit
113+
{{- if .Values.mautic.messenger.consumeHit.debug }}
114+
- -vv
115+
{{- end }}
110116
envFrom:
111117
{{- include "mautic.envFrom" . | nindent 12 }}
112118
volumeMounts:
@@ -143,6 +149,9 @@ spec:
143149
args:
144150
- messenger:consume
145151
- failed
152+
{{- if .Values.mautic.messenger.consumeFailed.debug }}
153+
- -vv
154+
{{- end }}
146155
envFrom:
147156
{{- include "mautic.envFrom" . | nindent 12 }}
148157
volumeMounts:

charts/mautic/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,12 +131,15 @@ mautic:
131131
consumeEmail:
132132
enabled: true
133133
resources: *resources
134+
debug: false
134135
consumeFailed:
135136
enabled: true
136137
resources: *resources
138+
debug: false
137139
consumeHit:
138140
enabled: true
139141
resources: *resources
142+
debug: false
140143

141144
service:
142145
type: ClusterIP

0 commit comments

Comments
 (0)