Skip to content

Commit

Permalink
[svix] fix postgres url in jwt job
Browse files Browse the repository at this point in the history
  • Loading branch information
jshimko committed Sep 25, 2024
1 parent 8e4b7dd commit 27093f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/svix/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: svix
description: A Helm chart for running svix on Kubernetes
type: application
version: 0.4.0
version: 0.4.1

dependencies:
# https://github.com/bitnami/charts/blob/main/bitnami/postgresql/Chart.yaml
Expand Down
2 changes: 1 addition & 1 deletion charts/svix/templates/svix/jwt-secret-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ spec:
env:
{{- if .Values.postgresql.enabled }}
- name: SVIX_DB_DSN
value: "postgresql://{{ .Values.global.postgresql.auth.username }}:{{ .Values.global.postgresql.auth.password }}@svix-postgresql:5432/{{ .Values.global.postgresql.auth.database }}"
value: "postgresql://{{ .Values.postgresql.auth.username }}:{{ .Values.postgresql.auth.password }}@svix-postgresql:5432/{{ .Values.postgresql.auth.database }}"
{{- end }}

{{- if .Values.redis.enabled }}
Expand Down

0 comments on commit 27093f1

Please sign in to comment.