Skip to content

Commit 6b0d467

Browse files
authored
Updated helm chart dependencies (#724)
1 parent 39be2cc commit 6b0d467

File tree

7 files changed

+18
-20
lines changed

7 files changed

+18
-20
lines changed

.github/workflows/chart-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Install helm-docs
1616
working-directory: /tmp
1717
env:
18-
HELM_DOCS_URL: https://github.com/norwoodj/helm-docs/releases/download/v1.13.0/helm-docs_1.13.0_Linux_x86_64.tar.gz
18+
HELM_DOCS_URL: https://github.com/norwoodj/helm-docs/releases/download/v1.14.2/helm-docs_1.14.2_Linux_x86_64.tar.gz
1919
run: |
2020
curl -LSs $HELM_DOCS_URL | tar xz && \
2121
mv ./helm-docs /usr/local/bin/helm-docs && \
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-22.04
4242
strategy:
4343
matrix:
44-
k8s-version: [1.25.11, 1.26.6, 1.27.3, 1.28.0, 1.29.0]
44+
k8s-version: [1.29.8, 1.30.4, 1.31.0]
4545
needs:
4646
- lint
4747
steps:

charts/hapi-fhir-jpaserver/Chart.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies:
22
- name: postgresql
33
repository: oci://registry-1.docker.io/bitnamicharts
4-
version: 14.3.1
5-
digest: sha256:fb1d56a00b544bb2ad5691553cadf6384f499652acb9ff5ad625ef36a1b8979e
6-
generated: "2024-03-10T14:43:22.395381351+01:00"
4+
version: 15.5.22
5+
digest: sha256:513750151f1497acfe6ba07fb1833b8d945ca19094f83018d34b339b666a2d56
6+
generated: "2024-08-18T18:30:23.392457144+02:00"

charts/hapi-fhir-jpaserver/Chart.yaml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ sources:
77
- https://github.com/hapifhir/hapi-fhir-jpaserver-starter
88
dependencies:
99
- name: postgresql
10-
version: 14.3.1
10+
version: 15.5.22
1111
repository: oci://registry-1.docker.io/bitnamicharts
1212
condition: postgresql.enabled
1313
appVersion: 7.2.0
14-
version: 0.17.0
14+
version: 0.17.1
1515
annotations:
1616
artifacthub.io/license: Apache-2.0
1717
artifacthub.io/containsSecurityUpdates: "false"
@@ -24,8 +24,6 @@ annotations:
2424
# When using the list of objects option the valid supported kinds are
2525
# added, changed, deprecated, removed, fixed, and security.
2626
- kind: changed
27-
description: updated starter image to v7.2.0
27+
description: updated curlimages/curl to 8.9.1
2828
- kind: changed
29-
description: updated curlimages/curl to 8.6.0
30-
- kind: changed
31-
description: "updated postgresql sub-chart to 14.3.1."
29+
description: "updated postgresql sub-chart to 15.5.22."

charts/hapi-fhir-jpaserver/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# HAPI FHIR JPA Server Starter Helm Chart
22

3-
![Version: 0.17.0](https://img.shields.io/badge/Version-0.17.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 7.2.0](https://img.shields.io/badge/AppVersion-7.2.0-informational?style=flat-square)
3+
![Version: 0.17.1](https://img.shields.io/badge/Version-0.17.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 7.2.0](https://img.shields.io/badge/AppVersion-7.2.0-informational?style=flat-square)
44

55
This helm chart will help you install the HAPI FHIR JPA Server in a Kubernetes environment.
66

@@ -15,7 +15,7 @@ helm install hapi-fhir-jpaserver hapifhir/hapi-fhir-jpaserver
1515

1616
| Repository | Name | Version |
1717
|------------|------|---------|
18-
| oci://registry-1.docker.io/bitnamicharts | postgresql | 14.3.1 |
18+
| oci://registry-1.docker.io/bitnamicharts | postgresql | 15.5.22 |
1919

2020
## Values
2121

@@ -57,7 +57,6 @@ helm install hapi-fhir-jpaserver hapifhir/hapi-fhir-jpaserver
5757
| postgresql.auth.database | string | `"fhir"` | name for a custom database to create |
5858
| postgresql.auth.existingSecret | string | `""` | Name of existing secret to use for PostgreSQL credentials `auth.postgresPassword`, `auth.password`, and `auth.replicationPassword` will be ignored and picked up from this secret The secret must contain the keys `postgres-password` (which is the password for "postgres" admin user), `password` (which is the password for the custom user to create when `auth.username` is set), and `replication-password` (which is the password for replication user). The secret might also contains the key `ldap-password` if LDAP is enabled. `ldap.bind_password` will be ignored and picked from this secret in this case. The value is evaluated as a template. |
5959
| postgresql.enabled | bool | `true` | 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 |
60-
| postgresql.primary.containerSecurityContext.readOnlyRootFilesystem | bool | `true` | |
6160
| replicaCount | int | `1` | number of replicas to deploy |
6261
| resources | object | `{}` | configure the FHIR server's resource requests and limits |
6362
| securityContext.allowPrivilegeEscalation | bool | `false` | |
@@ -74,6 +73,7 @@ helm install hapi-fhir-jpaserver hapifhir/hapi-fhir-jpaserver
7473
| serviceAccount.automount | bool | `true` | Automatically mount a ServiceAccount's API credentials? |
7574
| serviceAccount.create | bool | `false` | Specifies whether a service account should be created. |
7675
| serviceAccount.name | string | `""` | The name of the service account to use. If not set and create is true, a name is generated using the fullname template |
76+
| tests.automountServiceAccountToken | bool | `false` | whether the service account token should be auto-mounted for the test pods |
7777
| tests.resources | object | `{}` | configure the test pods resource requests and limits |
7878
| tolerations | list | `[]` | pod tolerations |
7979
| topologySpreadConstraints | list | `[]` | pod topology spread configuration see: https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/#api |
@@ -140,4 +140,4 @@ kubectl port-forward -n observability service/simplest-query 16686:16686
140140
and opening <http://localhost:16686/> in your browser.
141141

142142
----------------------------------------------
143-
Autogenerated from chart metadata using [helm-docs v1.13.0](https://github.com/norwoodj/helm-docs/releases/v1.13.0)
143+
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)

charts/hapi-fhir-jpaserver/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ spec:
3131
{{- toYaml .Values.podSecurityContext | nindent 8 }}
3232
initContainers:
3333
- name: wait-for-db-to-be-ready
34-
image: docker.io/bitnami/postgresql:16.2.0-debian-12-r6@sha256:ea55532b6f75afbc97f617d91ec5efae17609c8eb825a31845fa9cb9e4aa13e1
34+
image: docker.io/bitnami/postgresql:16.4.0-debian-12-r1@sha256:fb3d0a34e7b9f3e59442aa1fa2e6377857147c09ae754ddd5d4bb3fc0dd137da
3535
imagePullPolicy: IfNotPresent
3636
{{- with .Values.restrictedContainerSecurityContext }}
3737
securityContext:

charts/hapi-fhir-jpaserver/templates/tests/test-endpoints.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ metadata:
99
"helm.sh/hook": test
1010
spec:
1111
restartPolicy: Never
12+
automountServiceAccountToken: {{ .Values.tests.automountServiceAccountToken }}
1213
containers:
1314
- name: test-metadata-endpoint
1415
image: "{{ .Values.curl.image.registry }}/{{ .Values.curl.image.repository }}:{{ .Values.curl.image.tag }}"

charts/hapi-fhir-jpaserver/values.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,6 @@ postgresql:
109109
# see <https://github.com/bitnami/charts/tree/master/bitnami/postgresql> for details
110110
# if set to `false`, the values under `externalDatabase` are used
111111
enabled: true
112-
primary:
113-
containerSecurityContext:
114-
readOnlyRootFilesystem: true
115112
auth:
116113
# -- name for a custom database to create
117114
database: "fhir"
@@ -234,9 +231,11 @@ curl:
234231
image:
235232
registry: docker.io
236233
repository: curlimages/curl
237-
tag: 8.6.0@sha256:c3b8bee303c6c6beed656cfc921218c529d65aa61114eb9e27c62047a1271b9b
234+
tag: 8.9.1@sha256:8addc281f0ea517409209f76832b6ddc2cabc3264feb1ebbec2a2521ffad24e4
238235

239236
tests:
237+
# -- whether the service account token should be auto-mounted for the test pods
238+
automountServiceAccountToken: false
240239
# -- configure the test pods resource requests and limits
241240
resources: {}
242241
# limits:

0 commit comments

Comments
 (0)