Skip to content

Commit e9b7923

Browse files
committed
chore: bump ctrlplane chart version to 0.9.3 and update PostgreSQL URL syntax in template
1 parent 83ae20b commit e9b7923

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

charts/ctrlplane/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: ctrlplane
33
description: Ctrlplane Helm chart for Kubernetes
44
type: application
5-
version: 0.9.2
5+
version: 0.9.3
66
appVersion: "1.0.0"
77

88
maintainers:

charts/ctrlplane/templates/_postgresql.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ This handles both direct string values and valueFrom references
99
{{ include "ctrlplane.envVar" (dict "name" "POSTGRES_DATABASE" "value" .Values.global.postgresql.database) }}
1010
{{ include "ctrlplane.envVar" (dict "name" "POSTGRES_PASSWORD" "value" .Values.global.postgresql.password) }}
1111
- name: POSTGRES_URL
12-
value: "postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DATABASE}"
12+
value: "postgresql://$(POSTGRES_USER):$(POSTGRES_PASSWORD)@$(POSTGRES_HOST):$(POSTGRES_PORT)/$(POSTGRES_DATABASE)"
1313
{{- end -}}

0 commit comments

Comments
 (0)