chore(blocky): try different datasource url format

This commit is contained in:
Kjeld Schouten 2024-02-28 16:40:00 +01:00
parent 816bbea021
commit 5ceb01bb87
2 changed files with 3 additions and 2 deletions

View File

@ -44,4 +44,4 @@ sources:
- https://hub.docker.com/r/spx01/blocky - https://hub.docker.com/r/spx01/blocky
- https://quay.io/oriedge/k8s_gateway - https://quay.io/oriedge/k8s_gateway
type: application type: application
version: 13.5.3 version: 13.5.4

View File

@ -318,7 +318,7 @@ configmap:
- name: BlockyPostgres - name: BlockyPostgres
type: postgres type: postgres
uid: blockypostgres uid: blockypostgres
url: {{ .Values.cnpg.main.creds.portHost | default "na" }} url: {{ printf "%s:5432" (.Values.cnpg.main.creds.host | trimAll "\"") }}
access: proxy access: proxy
user: {{ .Values.cnpg.main.user }} user: {{ .Values.cnpg.main.user }}
secureJsonData: secureJsonData:
@ -375,6 +375,7 @@ queryLog:
creationAttempts: 3 creationAttempts: 3
# optional: Time between the creation attempts, default: 2s # optional: Time between the creation attempts, default: 2s
creationCooldown: 2s creationCooldown: 2s
cnpg: cnpg:
main: main:
enabled: true enabled: true