Skip to content

Commit

Permalink
fix number formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jsbroks committed Aug 29, 2024
1 parent 0d266c2 commit fa57564
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/ctrlplane/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: ctrlplane
description: Ctrlplane Helm chart for Kubernetes
type: application
version: 0.1.11
version: 0.1.12
appVersion: "1.16.0"

maintainers:
Expand Down
2 changes: 1 addition & 1 deletion charts/ctrlplane/templates/_postgresql.tpl
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{{- define "ctrlplane.postgresqlUrl" -}}
{{- 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 -}}
{{- printf "postgresql://%s:%s@%s:%d/%s" .Values.global.postgresql.user .Values.global.postgresql.password .Values.global.postgresql.host .Values.global.postgresql.port .Values.global.postgresql.database -}}
{{- end -}}
2 changes: 1 addition & 1 deletion charts/ctrlplane/templates/_redis.tpl
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{{- define "ctrlplane.redisUrl" -}}
{{- printf "postgresql://:%s@%s:%s" .Values.global.redis.password .Values.global.redis.host .Values.global.redis.porte -}}
{{- printf "postgresql://:%s@%s:%d" .Values.global.redis.password .Values.global.redis.host .Values.global.redis.porte -}}
{{- end -}}

0 comments on commit fa57564

Please sign in to comment.