Skip to content

Commit

Permalink
Merge pull request #977 from christianknell/renovate/baserow-postgres…
Browse files Browse the repository at this point in the history
…ql-12.x

Update Helm release postgresql to v12.12.10
  • Loading branch information
christianhuth authored Oct 3, 2023
2 parents 7b44b0f + ea59477 commit cde1623
Show file tree
Hide file tree
Showing 28 changed files with 11 additions and 9 deletions.
8 changes: 5 additions & 3 deletions charts/baserow/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: baserow
description: Baserow is an open source no-code database and Airtable alternative.
type: application
version: 1.25.0
version: 1.26.0
appVersion: "1.19.1"
home: https://github.com/christianknell/helm-charts
icon: https://baserow.io/img/favicon_192.png
Expand All @@ -15,7 +15,7 @@ sources:
dependencies:
- name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 12.10.0
version: 12.12.10
condition: postgresql.enabled
- name: redis
repository: https://charts.bitnami.com/bitnami
Expand All @@ -25,7 +25,9 @@ annotations:
artifacthub.io/category: database
artifacthub.io/changes: |
- kind: changed
description: bumped dependency of postgresql to chart version 12.10.0
description: bumped dependency of postgresql to chart version 12.12.10
- kind: fixed
description: wrong template name for postgresql dependency
artifacthub.io/screenshots: |
- title: Create your own online database without technical experience.
url: https://baserow.io/_nuxt/img/home_intro_screenshot.194c66b.png
Expand Down
12 changes: 6 additions & 6 deletions charts/baserow/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ Return the hostname of the postgresql to use
*/}}
{{- define "baserow.postgresql.hostname" -}}
{{- if .Values.postgresql.enabled -}}
{{- printf "%s" (include "postgresql.primary.fullname" .Subcharts.postgresql) -}}
{{- printf "%s" (include "postgresql.v1.primary.fullname" .Subcharts.postgresql) -}}
{{- else -}}
{{- printf "%s" (tpl .Values.externalPostgresql.hostname $) -}}
{{- end -}}
Expand All @@ -321,7 +321,7 @@ Return postgresql service port
*/}}
{{- define "baserow.postgresql.port" -}}
{{- if .Values.postgresql.enabled -}}
{{- printf "%s" (include "postgresql.service.port" .Subcharts.postgresql) -}}
{{- printf "%s" (include "postgresql.v1.service.port" .Subcharts.postgresql) -}}
{{- else -}}
{{- printf "%s" (tpl (toString .Values.externalPostgresql.port) $) -}}
{{- end -}}
Expand All @@ -332,7 +332,7 @@ Return the name for the database to use
*/}}
{{- define "baserow.postgresql.database" -}}
{{- if .Values.postgresql.enabled -}}
{{- printf "%s" (include "postgresql.database" .Subcharts.postgresql) -}}
{{- printf "%s" (include "postgresql.v1.database" .Subcharts.postgresql) -}}
{{- else -}}
{{- printf "%s" (tpl .Values.externalPostgresql.auth.database $) -}}
{{- end -}}
Expand All @@ -343,7 +343,7 @@ Return the name for the user to use
*/}}
{{- define "baserow.postgresql.username" -}}
{{- if .Values.postgresql.enabled -}}
{{- printf "%s" (include "postgresql.username" .Subcharts.postgresql) -}}
{{- printf "%s" (include "postgresql.v1.username" .Subcharts.postgresql) -}}
{{- else -}}
{{- printf "%s" (tpl .Values.externalPostgresql.auth.username $) -}}
{{- end -}}
Expand All @@ -354,7 +354,7 @@ Get the name of the secret containing the postgresql user password
*/}}
{{- define "baserow.postgresql.secretName" -}}
{{- if .Values.postgresql.enabled -}}
{{- printf "%s" (include "postgresql.secretName" .Subcharts.postgresql) -}}
{{- printf "%s" (include "postgresql.v1.secretName" .Subcharts.postgresql) -}}
{{- else if .Values.externalPostgresql.auth.existingSecret -}}
{{- printf "%s" (tpl .Values.externalPostgresql.auth.existingSecret $) -}}
{{- else -}}
Expand All @@ -367,7 +367,7 @@ Get the user-password key for the postgresql user password
*/}}
{{- define "baserow.postgresql.userPasswordKey" -}}
{{- if .Values.postgresql.enabled -}}
{{- printf "%s" (include "postgresql.userPasswordKey" .Subcharts.postgresql) -}}
{{- printf "%s" (include "postgresql.v1.userPasswordKey" .Subcharts.postgresql) -}}
{{- else if .Values.externalPostgresql.auth.userPasswordKey -}}
{{- printf "%s" (tpl .Values.externalPostgresql.auth.userPasswordKey $) -}}
{{- else -}}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit cde1623

Please sign in to comment.