Skip to content

Commit

Permalink
Merge pull request #74 from Alvearie/feat-member-match
Browse files Browse the repository at this point in the history
Add Support for Member-Match
  • Loading branch information
prb112 authored Jan 19, 2022
2 parents 0d4efb6 + 777c86d commit 11bed57
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
6 changes: 3 additions & 3 deletions charts/ibm-fhir-server/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
description: Helm chart for the IBM FHIR Server
name: ibm-fhir-server
version: 0.6.2
version: 0.6.3
appVersion: 4.10.2
dependencies:
- name: postgresql
Expand All @@ -25,5 +25,5 @@ annotations:
artifacthub.io/changes: |
# When using the list of objects option the valid supported kinds are
# added, changed, deprecated, removed, fixed, and security.
- kind: changed
description: update optionalScopes default value to fix README doc
- kind: added
description: support enabling the default member-match
3 changes: 2 additions & 1 deletion charts/ibm-fhir-server/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

![Version: 0.6.2](https://img.shields.io/badge/Version-0.6.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.10.2](https://img.shields.io/badge/AppVersion-4.10.2-informational?style=flat-square)
![Version: 0.6.3](https://img.shields.io/badge/Version-0.6.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.10.2](https://img.shields.io/badge/AppVersion-4.10.2-informational?style=flat-square)

# The IBM FHIR Server Helm Chart

Expand Down Expand Up @@ -294,6 +294,7 @@ If a truststore Secret is specified, the default truststore file will be replace
| keycloak.postgresql.nameOverride | string | `"keycloak-postgres"` | |
| keycloakConfigTemplate | string | `"defaultKeycloakConfig"` | Template with keycloak-config.json input for the Alvearie keycloak-config project |
| maxHeap | string | `""` | The value passed to the JVM via -Xmx to set the max heap size. |
| membermatch.enabled | bool | `false` | Enable the $member-match operation in the fhir-server-config.json. The default image does not include the fhir-operation-member-match, and must be added to a custom image. |
| minHeap | string | The default minHeap in the ibm-fhir-server image; 768m in IBM FHIR Server 4.10.2 | The value passed to the JVM via -Xms to set the initial heap size. |
| nameOverride | string | `nil` | Optional override for chart name portion of the created kube resources |
| nodeSelector | object | `{}` | Node labels for Pod assignment |
Expand Down
7 changes: 7 additions & 0 deletions charts/ibm-fhir-server/templates/_fhirServerConfigJson.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,13 @@ The default fhir-server-config.json.
"FHIROperationAdmin",
"FHIRUsers"
]
},
"membermatch": {
{{- if not .Values.membermatch.enabled }}
"enabled": false
{{- else }}
"enabled": true
{{- end }}
}
}
}
Expand Down
4 changes: 4 additions & 0 deletions charts/ibm-fhir-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -440,3 +440,7 @@ containerSecurityContext:

# -- pod security context for the server
securityContext: {}

membermatch:
# -- Enable the $member-match operation in the fhir-server-config.json. The default image does not include the fhir-operation-member-match, and must be added to a custom image.
enabled: false

0 comments on commit 11bed57

Please sign in to comment.