This repository contains the files needed for the deployment of FHIR Servers in a Kubernetes cluster. For the instalation the public Helm Chart is used, as well as the official version of HAPI FHIR JPA Server Starter.
Refer to the General FOSPS Deployment Documentation to deploy this service.
After installing or upgrading the helm release, run this command so that the probes work properly:
kubectl patch deployment fhir-server-epi \
--type='json' \
-p='[
{"op": "replace", "path": "/spec/template/spec/containers/0/livenessProbe/httpGet/path", "value": "/epi/api/livez"},
{"op": "replace", "path": "/spec/template/spec/containers/0/readinessProbe/httpGet/path", "value": "/epi/api/readyz"},
{"op": "replace", "path": "/spec/template/spec/containers/0/startupProbe/httpGet/path", "value": "/epi/api/readyz"}
]'
Please refer to the official documentation of HAPI FHIR.
None are known at this time
In case you find a problem or you need extra help, please use the issues tab to report the issue.
To contribute, fork this repository and send a pull request with the changes squashed.
This project is distributed under the terms of the Apache License, Version 2.0 (AL2). The license applies to this file and other files in the GitHub repository hosting this file.
Copyright 2022 Universidad Politécnica de Madrid
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.