Skip to content

Commit

Permalink
Use PostgreSQL 17 by default
Browse files Browse the repository at this point in the history
  • Loading branch information
faridco committed Oct 29, 2024
1 parent e12a528 commit b3f15c5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions aidboxdb/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
appVersion: "16.1"
appVersion: "17"
description: AidboxDB is based on the official PostgreSQL and contains additional tools
home: https://www.health-samurai.io/aidbox
icon: https://aidbox.github.io/helm-charts/icon.png?1712669999
name: aidboxdb
type: application
version: 0.1.9
version: 0.1.10
3 changes: 2 additions & 1 deletion aidboxdb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[AidboxDB](https://docs.aidbox.app/storage-1/aidboxdb-image) is a specialized version of the open-source PostgreSQL database, tailored for use as the data storage backend for Aidbox. It serves various purposes, including initializing and operating as a master database for Aidbox, functioning as a streaming replica, optimizing FHIR search queries, and supporting backup and maintenance functionalities.

![Version: 0.1.9](https://img.shields.io/badge/Version-0.1.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 16.1](https://img.shields.io/badge/AppVersion-16.1-informational?style=flat-square)
![Version: 0.1.10](https://img.shields.io/badge/Version-0.1.10-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 17](https://img.shields.io/badge/AppVersion-17-informational?style=flat-square)

## Add the helm repository

Expand Down Expand Up @@ -60,6 +60,7 @@ AidboxDB image contains [WAL-G](https://github.com/wal-g/wal-g). For more inform
| podSecurityContext | object | `{}` | |
| resources | object | `{}` | |
| securityContext | object | `{}` | |
| serviceAccount | string | `""` | |
| storage.className | string | `""` | Storage className to use |
| storage.size | string | `"300Gi"` | Storage volume size request |
| volumeMounts | list | `[]` | Additional volume mounts |
Expand Down
3 changes: 3 additions & 0 deletions aidboxdb/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ spec:
{{- toYaml . | nindent 8 }}
{{- end }}
spec:
{{- if .Values.serviceAccount }}
serviceAccountName: {{ .Values.serviceAccount }}
{{- end }}
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
Expand Down
1 change: 1 addition & 0 deletions aidboxdb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ resources: {}
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
serviceAccount: ""

podSecurityContext: {}
# fsGroup: 2000
Expand Down

0 comments on commit b3f15c5

Please sign in to comment.