Skip to content

Commit 037d149

Browse files
author
bennsimon
committed
update readme
change onaio ref to google
1 parent aae3b98 commit 037d149

File tree

2 files changed

+19
-8
lines changed

2 files changed

+19
-8
lines changed

Diff for: charts/fhir-data-pipes/README.md

+16-5
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ An open-source pipeline to transform data from a FHIR server (like HAPI, GCP FHI
66
## TL;DR
77

88
```bash
9-
$ helm repo add opensrp-fhir-data-pipes https://fhir-data-pipes.helm.smartregister.org
10-
$ helm install fhir-data-pipes opensp-fhir-data-pipes/fhir-data-pipes
9+
$ helm repo add google-fhir-data-pipes https://google.github.io/fhir-data-pipes/
10+
$ helm install fhir-data-pipes google-fhir-data-pipes/fhir-data-pipes
1111
```
1212

1313
## Introduction
1414

15-
This chart bootstraps [fhir-data-pipes](https://github.com/onaio/fhir-data-pipes) deployment on a [Kubernetes](http://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager.
15+
This chart bootstraps [fhir-data-pipes](https://github.com/google/fhir-data-pipes) deployment on a [Kubernetes](http://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager.
1616

1717
## Prerequisites
1818

@@ -26,7 +26,7 @@ The following table lists the configurable parameters of the Fhir-data-pipes cha
2626
| Parameter | Description | Default |
2727
|-------------------------------------------------------|-------------|-------------------------------------------------------------------------------------------------------|
2828
| `replicaCount` | | `1` |
29-
| `image.repository` | | `"onaio/fhir-data-pipes"` |
29+
| `image.repository` | | `"google/fhir-data-pipes"` |
3030
| `image.pullPolicy` | | `"IfNotPresent"` |
3131
| `image.tag` | | `"master"` |
3232
| `imagePullSecrets` | | `[]` |
@@ -105,7 +105,7 @@ The following table lists the configurable parameters of the Fhir-data-pipes cha
105105

106106

107107
## Spark SQL (Thrift Server) as Sidecar
108-
The chart provides the necessary configuration to set up additional containers on the StatefulSet. One such container could be the spark thrift server. Below is how one can set it up.
108+
The chart provides the necessary configuration to set up additional containers on the StatefulSet. One such container is the spark thrift server. Below is how one can set it up.
109109
````yaml
110110
---
111111
sidecars:
@@ -164,6 +164,17 @@ service:
164164
protocol: TCP
165165
name: hive
166166

167+
# For LDAP ensure that user has the attribute `uid` on its DN.
168+
# As of now the hive jdbc credentials are not parsed on the pipeline code, as a workaround append the credentials on the `databaseName` credentials as follows:
169+
#thriftserver:
170+
# hive:
171+
# databaseService: "hive2"
172+
# databaseHostName: "fhir-data-pipes"
173+
# databasePort: "10000"
174+
# databaseUser: "user" (not used as of now)
175+
# databasePassword: "password" (not used as of now)
176+
# databaseName: "default;user=<userid>;password=<password>"
177+
167178
hiveSiteConfig: |
168179
<?xml version="1.0"?>
169180
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>

Diff for: charts/fhir-data-pipes/values.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
replicaCount: 1
2222

2323
image:
24-
repository: onaio/fhir-data-pipes
24+
repository: google/fhir-data-pipes
2525
pullPolicy: IfNotPresent
2626
# Overrides the image tag whose default is the chart appVersion.
2727
tag: "master"
@@ -146,9 +146,9 @@ applicationConfig:
146146
fhirServerUrl: ""
147147
dbConfig: "/app/config/hapi-postgres-config.json"
148148
dwhRootPrefix: "/dwh/controller_DWH"
149-
thriftserverHiveConfig: "/app/config/thrifter-hive-config.json"
149+
thriftserverHiveConfig: "/app/config/thriftserver-hive-config.json"
150150
incrementalSchedule: "* * * * * *"
151-
resourceList: "PatientEncounterObservation"
151+
resourceList: "Patient,Encounter,Observation"
152152
maxWorkers: "10"
153153
createHiveResourceTables: "true"
154154
hiveJdbcDriver: "org.apache.hive.jdbc.HiveDriver"

0 commit comments

Comments
 (0)