Skip to content

Commit

Permalink
Update deployment.yaml
Browse files Browse the repository at this point in the history
update default embedded database URL
created with:
postgres using /opt/database/bin/bin/pg_ctl start -w -D /opt/database/data -o -p 6432:

URL previously pointed to /opt/database/ causing crash reboot
  • Loading branch information
connected-me authored Apr 2, 2024
1 parent 73605fd commit de18fb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ spec:
name: {{ if .Values.global.db.connectionPooler.enabled }}{{ .Values.global.db.connectionPooler.secretKeyRef.name }}{{ else }}{{ .Values.db.external.secretKeyRef.name }}{{ end }}
key: {{ if .Values.global.db.connectionPooler.enabled }}{{ .Values.global.db.connectionPooler.secretKeyRef.key }}{{ else }}{{ .Values.db.external.secretKeyRef.key }}{{ end }}
{{- else }}
value: "embedded:///opt/database/"
value: "embedded:///opt/database/data/"
{{- end }}
{{- if .Values.upstream.secretKeyRef.name }}
envFrom:
Expand Down

0 comments on commit de18fb7

Please sign in to comment.