Skip to content

Commit

Permalink
Update Helm chart (#286)
Browse files Browse the repository at this point in the history
Signed-off-by: Sergio Castaño Arteaga <[email protected]>
  • Loading branch information
tegioz authored Nov 29, 2024
1 parent d32daac commit d5ab740
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/clowarden/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: clowarden
description: CLOWarden is a tool that manages access to resources across multiple services
type: application
version: 0.1.4-1
version: 0.1.4-2
appVersion: 0.1.3
kubeVersion: ">= 1.19.0-0"
home: https://clowarden.io
Expand Down
2 changes: 1 addition & 1 deletion charts/clowarden/templates/server_secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ stringData:
clowarden.yml: |-
db:
host: {{ default (printf "%s-postgresql.%s" .Release.Name .Release.Namespace) .Values.db.host }}
port: {{ .Values.db.port }}
port: {{ .Values.db.port | atoi }}
dbname: {{ .Values.db.dbname }}
user: {{ .Values.db.user }}
password: {{ .Values.db.password }}
Expand Down
2 changes: 1 addition & 1 deletion charts/clowarden/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ configDir: "/home/clowarden/.config/clowarden"
# Database configuration
db:
host: ""
port: 5432
port: "5432"
dbname: clowarden
user: postgres
password: postgres
Expand Down

0 comments on commit d5ab740

Please sign in to comment.