Skip to content

Commit f171960

Browse files
authored
fix(csi-1938): updated reporting-events-processor-svc chart (#144)
1 parent a3fa667 commit f171960

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

mojaloop/finance-portal/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 5.1.3
18+
version: 5.1.4
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
@@ -63,7 +63,7 @@ dependencies:
6363
tags:
6464
- mojaloop
6565
- reporting-events-processor-svc
66-
version: 3.5.2
66+
version: ">= 3.5.3"
6767
- name: reporting-hub-bop-role-ui
6868
condition: reporting-hub-bop-role-ui.enabled
6969
repository: "file://../reporting-hub-bop-role-ui"

mojaloop/reporting-events-processor-svc/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
description: Reporting Events Processor
33
name: reporting-events-processor-svc
4-
version: 3.5.2
4+
version: 3.5.3
55
appVersion: "3.5.1"
66
home: http://mojaloop.io
77
icon: http://mojaloop.io/images/logo.png

mojaloop/reporting-events-processor-svc/templates/deployment.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,12 @@ spec:
8585
readOnly: true
8686
{{- end }}
8787
env:
88+
{{- if .Values.env }}
89+
{{- range $key, $val := .Values.env }}
90+
- name: {{ $key }}
91+
value: {{ $val | quote }}
92+
{{- end }}
93+
{{- end }}
8894
# Event Store
8995
- name: EVENT_STORE_DB_HOST
9096
value: '{{ include "common.backends.reportingEventsDB.host" . }}'

mojaloop/reporting-events-processor-svc/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,6 @@ image:
130130

131131
replicaCount: 1
132132
command:
133-
# - sleep
134-
# - infinity
135133
- npm
136134
- start
137135

@@ -225,7 +223,7 @@ configFiles:
225223
"socketKeepaliveEnable": true,
226224
"allowAutoCreateTopics": true,
227225
"partitionAssignmentStrategy": "",
228-
"enableAutoCommit": false
226+
"enableAutoCommit": true
229227
},
230228
"topicConf": {
231229
"autoOffsetReset": "earliest"
@@ -236,6 +234,8 @@ configFiles:
236234
}
237235
}
238236

237+
#env:
238+
# KEY: value
239239

240240
podAnnotations: {}
241241

0 commit comments

Comments
 (0)