Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FACT-1897 moved paymentsEnabled to values.yaml #3325

Merged
merged 5 commits into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/bulk-scan-processor/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: bulk-scan-processor
apiVersion: v2
home: https://github.com/hmcts/bulk-scan-processor
version: 1.0.27
version: 1.0.28
description: HMCTS Bulk scan processor service
maintainers:
- name: HMCTS BSP Team
Expand Down
7 changes: 7 additions & 0 deletions charts/bulk-scan-processor/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ java:
OCR_VALIDATION_URL_SSCS: http://sscs-bulk-scan-{{ .Values.global.environment }}.service.core-compute-{{ .Values.global.environment }}.internal
OCR_VALIDATION_URL_NFD: http://nfdiv-case-api-{{ .Values.global.environment }}.service.core-compute-{{ .Values.global.environment }}.internal
OCR_VALIDATION_URL_PRIVATELAW: http://fis-bulk-scan-api-{{ .Values.global.environment }}.service.core-compute-{{ .Values.global.environment }}.internal
PAYMENTS_ENABLED_PROBATE: "true"
PAYMENTS_ENABLED_DIVORCE: "true"
PAYMENTS_ENABLED_FINREM: "true"
PAYMENTS_ENABLED_BULKSCAN_SAMPLE_APP: "true"
PAYMENTS_ENABLED_BULKSCAN_AUTO_SAMPLE_APP: "true"
PAYMENTS_ENABLED_PUBLICLAW: "false"
PAYMENTS_ENABLED_NFD: "true"
SCAN_ENABLED: "true"
SCAN_DELAY: "300000"
LEASE_ACQUIRE_DELAY_IN_SECONDS: "300"
Expand Down
14 changes: 7 additions & 7 deletions src/main/resources/application-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,19 +128,19 @@ containers:
- 12625
- 12624
ocrValidationUrl: ${OCR_VALIDATION_URL_PROBATE}
paymentsEnabled: true
paymentsEnabled: {$PAYMENTS_ENABLED_PROBATE:false}
- container: divorce
jurisdiction: DIVORCE
poBoxes:
- 12706
ocrValidationUrl: ${OCR_VALIDATION_URL_DIVORCE}
paymentsEnabled: true
paymentsEnabled: {$PAYMENTS_ENABLED_DIVORCE:false}
- container: finrem
jurisdiction: DIVORCE
poBoxes:
- 12746
ocrValidationUrl: ${OCR_VALIDATION_URL_FINREM}
paymentsEnabled: true
paymentsEnabled: {$PAYMENTS_ENABLED_FINREM:false}
- container: cmc
jurisdiction: CMC
poBoxes:
Expand All @@ -151,18 +151,18 @@ containers:
- BULKSCANPO
- BULKSCANPO2
ocrValidationUrl: ${OCR_VALIDATION_URL_BULKSCAN_SAMPLE_APP}
paymentsEnabled: true
paymentsEnabled: {$PAYMENTS_ENABLED_BULKSCAN_SAMPLE_APP:false}
- container: bulkscanauto
jurisdiction: BULKSCAN
poBoxes:
- BULKSCANPO
ocrValidationUrl: ${OCR_VALIDATION_URL_BULKSCAN_SAMPLE_APP}
paymentsEnabled: true
paymentsEnabled: {$PAYMENTS_ENABLED_BULKSCAN_AUTO_SAMPLE_APP:false}
- container: publiclaw
jurisdiction: PUBLICLAW
poBoxes:
- 12879
paymentsEnabled: false
paymentsEnabled: {$PAYMENTS_ENABLED_PUBLICLAW:false}
- container: privatelaw
jurisdiction: PRIVATELAW
poBoxes:
Expand All @@ -175,7 +175,7 @@ containers:
poBoxes:
- 13226
ocrValidationUrl: ${OCR_VALIDATION_URL_NFD}
paymentsEnabled: true
paymentsEnabled: {$PAYMENTS_ENABLED_NFD:false}

# clients region

Expand Down
14 changes: 7 additions & 7 deletions src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,19 +145,19 @@ containers:
- 12625
- 12624
ocrValidationUrl: ${OCR_VALIDATION_URL_PROBATE}
paymentsEnabled: true
paymentsEnabled: {$PAYMENTS_ENABLED_PROBATE:false}
- container: divorce
jurisdiction: DIVORCE
poBoxes:
- 12706
ocrValidationUrl: ${OCR_VALIDATION_URL_DIVORCE}
paymentsEnabled: true
paymentsEnabled: {$PAYMENTS_ENABLED_DIVORCE:false}
- container: finrem
jurisdiction: DIVORCE
poBoxes:
- 12746
ocrValidationUrl: ${OCR_VALIDATION_URL_FINREM}
paymentsEnabled: true
paymentsEnabled: {$PAYMENTS_ENABLED_FINREM:false}
- container: cmc
jurisdiction: CMC
poBoxes:
Expand All @@ -168,18 +168,18 @@ containers:
- BULKSCANPO
- BULKSCANPO2
ocrValidationUrl: ${OCR_VALIDATION_URL_BULKSCAN_SAMPLE_APP}
paymentsEnabled: true
paymentsEnabled: {$PAYMENTS_ENABLED_BULKSCAN_SAMPLE_APP:false}
- container: bulkscanauto
jurisdiction: BULKSCAN
poBoxes:
- BULKSCANPO
ocrValidationUrl: ${OCR_VALIDATION_URL_BULKSCAN_SAMPLE_APP}
paymentsEnabled: true
paymentsEnabled: {$PAYMENTS_ENABLED_BULKSCAN_AUTO_SAMPLE_APP:false}
- container: publiclaw
jurisdiction: PUBLICLAW
poBoxes:
- 12879
paymentsEnabled: false
paymentsEnabled: {$PAYMENTS_ENABLED_PUBLICLAW:false}
- container: privatelaw
jurisdiction: PRIVATELAW
poBoxes:
Expand All @@ -192,7 +192,7 @@ containers:
poBoxes:
- 13226
ocrValidationUrl: ${OCR_VALIDATION_URL_NFD}
paymentsEnabled: true
paymentsEnabled: {$PAYMENTS_ENABLED_NFD:false}

# clients region

Expand Down