Skip to content

Commit

Permalink
FACT-1897 moved paymentsEnabled to values.yaml (#3325)
Browse files Browse the repository at this point in the history
* FACT-1897 moved paymentsEnabled to values.yaml

* Bumping chart version/ fixing aliases

* added defaults

* default all false

* fixing typos with dollarsigns

---------

Co-authored-by: hmcts-jenkins-a-to-c <62422075+hmcts-jenkins-a-to-c[bot]@users.noreply.github.com>
  • Loading branch information
justiceia and hmcts-jenkins-a-to-c[bot] authored Sep 9, 2024
1 parent 8f0ba8a commit 99fa80c
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 15 deletions.
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

0 comments on commit 99fa80c

Please sign in to comment.