Skip to content

values pushed #820

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
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
7 changes: 2 additions & 5 deletions charts/hapi-fhir-jpaserver/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
dependencies:
- name: postgresql
repository: oci://registry-1.docker.io/bitnamicharts
version: 16.5.5
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.30.0
digest: sha256:c114b296b53007a7973260de8bad61917fe741c0ad9de15fdbeea5743c8f4910
generated: "2025-03-21T21:44:22.334197366+01:00"
digest: sha256:1d4fe7ab3d8601c2772b82ca4495929226ecbf073f9fb436f5bf5f089df6c4bd
generated: "2025-05-09T14:53:07.590654+05:30"
4 changes: 0 additions & 4 deletions charts/hapi-fhir-jpaserver/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ home: https://github.com/hapifhir/hapi-fhir-jpaserver-starter
sources:
- https://github.com/hapifhir/hapi-fhir-jpaserver-starter
dependencies:
- name: postgresql
version: 16.5.5
repository: oci://registry-1.docker.io/bitnamicharts
condition: postgresql.enabled
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.30.0
Expand Down
1 change: 1 addition & 0 deletions charts/hapi-fhir-jpaserver/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ metadata:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
ingressClassName: {{ .Values.ingress.className | default "nginx" }}
{{- if .Values.ingress.tls }}
tls:
{{- range .Values.ingress.tls }}
Expand Down
62 changes: 62 additions & 0 deletions charts/hapi-fhir-jpaserver/values.azure.dev.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
replicaCount: 1

# sprintregistry.azurecr.io/hapi-server:0.0.1

image:
registry: sprintregistry.azurecr.io
repository: hapi-server
tag: "0.0.1"
pullPolicy: IfNotPresent

ingress:
enabled: true
tls:
- secretName: fhir-server-autonomize-dev-tls
hosts:
- fhir.sprint.autonomize.dev
className: "nginx"
annotations:
cert-manager.io/cluster-issuer: letsencrypt
nginx.ingress.kubernetes.io/proxy-connect-timeout: "3600"
nginx.ingress.kubernetes.io/proxy-read-timeout: "3600"
nginx.ingress.kubernetes.io/proxy-send-timeout: "3600"
hosts:
- host: fhir.sprint.autonomize.dev
paths:
- /
pathType: Prefix


# -- configure the FHIR server's resource requests and limits
resources:
limits:
cpu: 1000m
memory: 2048Mi
requests:
cpu: 300m
memory: 512Mi

externalDatabase:
# -- external database host used with `postgresql.enabled=false`
host: xxxxxxxx
# -- database port number
port: 5432
# -- username for the external database
user: postgres
# -- database password
password: "XXXXXXX"
# -- name of an existing secret resource containing the DB password in the `existingSecretKey` key
existingSecret: ""
# -- name of the key inside the `existingSecret`
existingSecretKey: "postgresql-password"
# -- database name
database: altais-fhir


serviceAccount:
# -- Specifies whether a service account should be created.
create: false
name: "genesis-platform-sa"
# -- Automatically mount a ServiceAccount's API credentials?
automount: true

3 changes: 2 additions & 1 deletion charts/hapi-fhir-jpaserver/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ service:
ingress:
# -- whether to create an Ingress to expose the FHIR server HTTP endpoint
enabled: false
className: "nginx"
# -- provide any additional annotations which may be required. Evaluated as a template.
annotations:
{}
Expand Down Expand Up @@ -118,7 +119,7 @@ postgresql:
# -- enable an included PostgreSQL DB.
# see <https://github.com/bitnami/charts/tree/master/bitnami/postgresql> for details
# if set to `false`, the values under `externalDatabase` are used
enabled: true
enabled: false
auth:
# -- name for a custom database to create
database: "fhir"
Expand Down