Skip to content
Open
Show file tree
Hide file tree
Changes from all 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: 2 additions & 0 deletions charts/dataingestion-service/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ spec:
value: "{{ .Values.kafkaConcurrency}}"
- name: API_PAYLOAD_MAX_SIZE
value: "{{ .Values.apiPayloadMaxSize}}"
- name: OBR_SPLITTING_ENABLED
value: "{{ .Values.features.obrSplitting.enabled}}"
volumeMounts:
- mountPath: /usr/share/dataingestion/data
name: di-persistent-storage
Expand Down
6 changes: 5 additions & 1 deletion charts/dataingestion-service/values-dts1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ env: "dts1"
image:
repository: ""
pullPolicy: IfNotPresent
tag: 1.0.1-SNAPSHOT.f4babc7
tag: 1.0.1-SNAPSHOT-batch.1e2a6fc

imagePullSecrets: []
nameOverride: ""
Expand Down Expand Up @@ -133,6 +133,10 @@ sftp:
filePaths: "/"
# filePaths value should be comma seperated like "/,/LAB-1,/lab-2, /lab-2/lab2-sub-folder"

features:
obrSplitting:
enabled: "false"

kafkaConcurrency: "1"


Expand Down
5 changes: 5 additions & 0 deletions charts/dataingestion-service/values-feature.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,12 @@ sftp:
host: ""
username: ""
password: ""
elrFileExtns: "txt,hl7"
filePaths: "/"

features:
obrSplitting:
enabled: "false"

apiPayloadMaxSize: "100MB"

Expand Down
6 changes: 6 additions & 0 deletions charts/dataingestion-service/values-int1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,12 @@ sftp:
host: ""
username: ""
password: ""
elrFileExtns: "txt,hl7"
filePaths: "/"

features:
obrSplitting:
enabled: "false"

kafkaConcurrency: "1"
apiPayloadMaxSize: "100MB"
Expand Down
3 changes: 3 additions & 0 deletions charts/dataingestion-service/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,9 @@ sftp:
filePaths: "/"
# filePaths value should be comma seperated like "/,/LAB-1,/lab-2,/lab-2/lab2-sub-folder"
##################################
features:
obrSplitting:
enabled: "false"

apiPayloadMaxSize: "100MB"

Expand Down