Updated hapi fhir version and all dependencies in the helm chart (#835)

Co-authored-by: chgl <5307555+chgl@users.noreply.github.com>
This commit is contained in:
chgl
2025-06-26 15:46:10 +02:00
committed by GitHub
parent 89ff121754
commit b126457e2d
6 changed files with 45 additions and 19 deletions

View File

@@ -150,3 +150,13 @@ Create the JDBC URL from the host, port and database name.
{{- $appName := .Release.Name -}}
{{ printf "jdbc:postgresql://%s:%d/%s?ApplicationName=%s" $host (int $port) $name $appName }}
{{- end -}}
{{/*
Get the container image for the wait-for-db init container t
*/}}
{{- define "hapi-fhir-jpaserver.waitForDatabaseInitContainerImage" -}}
{{- $registry := .Values.waitForDatabaseInitContainer.image.registry -}}
{{- $repository := .Values.waitForDatabaseInitContainer.image.repository -}}
{{- $tag := .Values.waitForDatabaseInitContainer.image.tag -}}
{{ printf "%s/%s:%s" $registry $repository $tag}}
{{- end -}}