Skip to content

Commit 9cc9194

Browse files
Fix Postgres port (#11)
1 parent dd817b2 commit 9cc9194

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,8 @@ Features:
1010
- **Active Development**: Continuously updated to keep up with the latest best practices and features in the ctrlplane ecosystem.
1111

1212
Get started with ctrlplanedev/ctrlplane-charts today and supercharge your Kubernetes deployments!
13+
14+
```bash
15+
helm repo add ctrlcharts https://charts.ctrlplane.dev
16+
helm repo update
17+
```

charts/ctrlplane/Chart.yaml

+1-1
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.1.37
5+
version: 0.1.38
66
appVersion: "1.16.0"
77

88
maintainers:
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{{- define "ctrlplane.postgresqlUrl" -}}
2-
{{- printf "postgresql://%s:%s@%s:%s/%s" .Values.global.postgresql.user .Values.global.postgresql.password .Values.global.postgresql.host .Values.global.postgresql.port .Values.global.postgresql.database -}}
3-
{{- end -}}
2+
{{- printf "postgresql://%s:%s@%s:%s/%s" .Values.global.postgresql.user .Values.global.postgresql.password .Values.global.postgresql.host (toString .Values.global.postgresql.port) .Values.global.postgresql.database -}}
3+
{{- end -}}

0 commit comments

Comments
 (0)