File tree 4 files changed +22
-15
lines changed
charts/bulk-scan-processor
4 files changed +22
-15
lines changed Original file line number Diff line number Diff line change 1
1
name : bulk-scan-processor
2
2
apiVersion : v2
3
3
home : https://github.com/hmcts/bulk-scan-processor
4
- version : 1.0.27
4
+ version : 1.0.28
5
5
description : HMCTS Bulk scan processor service
6
6
maintainers :
7
7
- name : HMCTS BSP Team
Original file line number Diff line number Diff line change 14
14
OCR_VALIDATION_URL_SSCS : http://sscs-bulk-scan-{{ .Values.global.environment }}.service.core-compute-{{ .Values.global.environment }}.internal
15
15
OCR_VALIDATION_URL_NFD : http://nfdiv-case-api-{{ .Values.global.environment }}.service.core-compute-{{ .Values.global.environment }}.internal
16
16
OCR_VALIDATION_URL_PRIVATELAW : http://fis-bulk-scan-api-{{ .Values.global.environment }}.service.core-compute-{{ .Values.global.environment }}.internal
17
+ PAYMENTS_ENABLED_PROBATE : " true"
18
+ PAYMENTS_ENABLED_DIVORCE : " true"
19
+ PAYMENTS_ENABLED_FINREM : " true"
20
+ PAYMENTS_ENABLED_BULKSCAN_SAMPLE_APP : " true"
21
+ PAYMENTS_ENABLED_BULKSCAN_AUTO_SAMPLE_APP : " true"
22
+ PAYMENTS_ENABLED_PUBLICLAW : " false"
23
+ PAYMENTS_ENABLED_NFD : " true"
17
24
SCAN_ENABLED : " true"
18
25
SCAN_DELAY : " 300000"
19
26
LEASE_ACQUIRE_DELAY_IN_SECONDS : " 300"
Original file line number Diff line number Diff line change @@ -128,19 +128,19 @@ containers:
128
128
- 12625
129
129
- 12624
130
130
ocrValidationUrl : ${OCR_VALIDATION_URL_PROBATE}
131
- paymentsEnabled : true
131
+ paymentsEnabled : ${PAYMENTS_ENABLED_PROBATE:false}
132
132
- container : divorce
133
133
jurisdiction : DIVORCE
134
134
poBoxes :
135
135
- 12706
136
136
ocrValidationUrl : ${OCR_VALIDATION_URL_DIVORCE}
137
- paymentsEnabled : true
137
+ paymentsEnabled : ${PAYMENTS_ENABLED_DIVORCE:false}
138
138
- container : finrem
139
139
jurisdiction : DIVORCE
140
140
poBoxes :
141
141
- 12746
142
142
ocrValidationUrl : ${OCR_VALIDATION_URL_FINREM}
143
- paymentsEnabled : true
143
+ paymentsEnabled : ${PAYMENTS_ENABLED_FINREM:false}
144
144
- container : cmc
145
145
jurisdiction : CMC
146
146
poBoxes :
@@ -151,18 +151,18 @@ containers:
151
151
- BULKSCANPO
152
152
- BULKSCANPO2
153
153
ocrValidationUrl : ${OCR_VALIDATION_URL_BULKSCAN_SAMPLE_APP}
154
- paymentsEnabled : true
154
+ paymentsEnabled : ${PAYMENTS_ENABLED_BULKSCAN_SAMPLE_APP:false}
155
155
- container : bulkscanauto
156
156
jurisdiction : BULKSCAN
157
157
poBoxes :
158
158
- BULKSCANPO
159
159
ocrValidationUrl : ${OCR_VALIDATION_URL_BULKSCAN_SAMPLE_APP}
160
- paymentsEnabled : true
160
+ paymentsEnabled : ${PAYMENTS_ENABLED_BULKSCAN_AUTO_SAMPLE_APP:false}
161
161
- container : publiclaw
162
162
jurisdiction : PUBLICLAW
163
163
poBoxes :
164
164
- 12879
165
- paymentsEnabled : false
165
+ paymentsEnabled : ${PAYMENTS_ENABLED_PUBLICLAW: false}
166
166
- container : privatelaw
167
167
jurisdiction : PRIVATELAW
168
168
poBoxes :
@@ -175,7 +175,7 @@ containers:
175
175
poBoxes :
176
176
- 13226
177
177
ocrValidationUrl : ${OCR_VALIDATION_URL_NFD}
178
- paymentsEnabled : true
178
+ paymentsEnabled : ${PAYMENTS_ENABLED_NFD:false}
179
179
180
180
# clients region
181
181
Original file line number Diff line number Diff line change @@ -145,19 +145,19 @@ containers:
145
145
- 12625
146
146
- 12624
147
147
ocrValidationUrl : ${OCR_VALIDATION_URL_PROBATE}
148
- paymentsEnabled : true
148
+ paymentsEnabled : ${PAYMENTS_ENABLED_PROBATE:false}
149
149
- container : divorce
150
150
jurisdiction : DIVORCE
151
151
poBoxes :
152
152
- 12706
153
153
ocrValidationUrl : ${OCR_VALIDATION_URL_DIVORCE}
154
- paymentsEnabled : true
154
+ paymentsEnabled : ${PAYMENTS_ENABLED_DIVORCE:false}
155
155
- container : finrem
156
156
jurisdiction : DIVORCE
157
157
poBoxes :
158
158
- 12746
159
159
ocrValidationUrl : ${OCR_VALIDATION_URL_FINREM}
160
- paymentsEnabled : true
160
+ paymentsEnabled : ${PAYMENTS_ENABLED_FINREM:false}
161
161
- container : cmc
162
162
jurisdiction : CMC
163
163
poBoxes :
@@ -168,18 +168,18 @@ containers:
168
168
- BULKSCANPO
169
169
- BULKSCANPO2
170
170
ocrValidationUrl : ${OCR_VALIDATION_URL_BULKSCAN_SAMPLE_APP}
171
- paymentsEnabled : true
171
+ paymentsEnabled : ${PAYMENTS_ENABLED_BULKSCAN_SAMPLE_APP:false}
172
172
- container : bulkscanauto
173
173
jurisdiction : BULKSCAN
174
174
poBoxes :
175
175
- BULKSCANPO
176
176
ocrValidationUrl : ${OCR_VALIDATION_URL_BULKSCAN_SAMPLE_APP}
177
- paymentsEnabled : true
177
+ paymentsEnabled : ${PAYMENTS_ENABLED_BULKSCAN_AUTO_SAMPLE_APP:false}
178
178
- container : publiclaw
179
179
jurisdiction : PUBLICLAW
180
180
poBoxes :
181
181
- 12879
182
- paymentsEnabled : false
182
+ paymentsEnabled : ${PAYMENTS_ENABLED_PUBLICLAW: false}
183
183
- container : privatelaw
184
184
jurisdiction : PRIVATELAW
185
185
poBoxes :
@@ -192,7 +192,7 @@ containers:
192
192
poBoxes :
193
193
- 13226
194
194
ocrValidationUrl : ${OCR_VALIDATION_URL_NFD}
195
- paymentsEnabled : true
195
+ paymentsEnabled : ${PAYMENTS_ENABLED_NFD:false}
196
196
197
197
# clients region
198
198
You can’t perform that action at this time.
0 commit comments